modules 添加web

This commit is contained in:
Xwite
2023-04-07 20:28:21 +08:00
parent 3447e46176
commit 57e2c3a418
88 changed files with 5784 additions and 0 deletions
@@ -0,0 +1,75 @@
<template>
<el-tabs id="source-edit">
<el-tab-pane
v-for="{ name, children } in tabsData"
:label="name"
:key="name"
>
<el-form label-position="right" label-width="5em">
<el-form-item
v-for="{
type,
title,
namespace,
id,
array,
hint,
required,
} in children"
:label="title"
:key="title"
:required="required"
>
<el-input
v-if="type == 'String' && typeof namespace == 'undefined'"
type="textarea"
v-model="currentSource[id]"
:placeholder="hint"
autosize
/>
<el-input
v-if="type == 'String' && typeof namespace != 'undefined'"
type="textarea"
v-model="currentSource[namespace][id]"
:placeholder="hint"
autosize
/>
<el-switch v-if="type == 'Boolean'" v-model="currentSource[id]" />
<el-input-number
v-if="type == 'Number'"
v-model="currentSource[id]"
:min="0"
/>
<el-select v-if="type == 'Array'" v-model="currentSource[id]">
<el-option
v-for="(name, index) in array"
:value="index"
:key="name"
:label="name"
/>
</el-select>
</el-form-item>
</el-form>
</el-tab-pane>
</el-tabs>
</template>
<script setup>
const store = useSourceStore();
const props = defineProps(["config"]);
const tabsData = Object.values(props.config);
const { currentSource } = storeToRefs(store);
</script>
<style lang="scss" scoped>
:deep(.el-tab-pane) {
height: calc(100vh - 40px);
overflow-y: auto;
}
</style>