From b0ecef242efe94de007a183a3c8713a04b626ff4 Mon Sep 17 00:00:00 2001 From: wj <347312259@qq.com> Date: Thu, 15 Jun 2023 16:54:40 +0800 Subject: [PATCH] =?UTF-8?q?=E8=83=BD=E6=BA=90=E7=9B=91=E6=B5=8B=E6=9B=B2?= =?UTF-8?q?=E7=BA=BF=E5=9B=BE=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- psdc-ui/src/views/control/manual/index.vue | 4 + psdc-ui/src/views/system/cl/index.vue | 16 +- psdc-ui/src/views/system/config/index.vue | 795 ++++++++++++++++++++- 3 files changed, 811 insertions(+), 4 deletions(-) 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 @@ - + + +