diff --git a/psdc-ui/src/views/control/manual/index.vue b/psdc-ui/src/views/control/manual/index.vue index 300b992..04d0d10 100644 --- a/psdc-ui/src/views/control/manual/index.vue +++ b/psdc-ui/src/views/control/manual/index.vue @@ -97,6 +97,10 @@ + + + + diff --git a/psdc-ui/src/views/system/cl/index.vue b/psdc-ui/src/views/system/cl/index.vue index 55a1848..29b16a2 100644 --- a/psdc-ui/src/views/system/cl/index.vue +++ b/psdc-ui/src/views/system/cl/index.vue @@ -207,7 +207,12 @@ - + + + {{ item.content }} + + + 添加步骤 @@ -724,6 +729,15 @@ function handleDel(sceneCode) { } +//添加步骤 +const items = reactive([{ id: 1, title: '第一步', content: '步骤一的内容' }]) +const activeNames = ref(['1']) +const addStep = () => { + const newId = items.length + 1 + items.push({ id: newId, title: `第${newId}步`, content: `步骤${newId}的内容` }) + activeNames.value.push(`${newId}`) +} + const { queryParams } = toRefs(data); diff --git a/psdc-ui/src/views/system/config/index.vue b/psdc-ui/src/views/system/config/index.vue index 37d41ab..6e6bdf8 100644 --- a/psdc-ui/src/views/system/config/index.vue +++ b/psdc-ui/src/views/system/config/index.vue @@ -1,9 +1,798 @@ - + + +