From 9c5fe435490a0923988e9e17a36ef5a49cd0a4f4 Mon Sep 17 00:00:00 2001 From: "1378012178@qq.com" <1378012178@qq.com> Date: Mon, 8 Dec 2025 17:07:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E6=8C=87=E4=BB=A4=E6=B5=81?= =?UTF-8?q?=E7=A8=8B=E9=85=8D=E7=BD=AE-=E5=AD=90=E6=B5=81=E7=A8=8B-?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E6=8C=87=E4=BB=A4/=E4=B8=8B=E4=B8=80?= =?UTF-8?q?=E8=8A=82=E7=82=B9=E5=A2=9E=E5=8A=A0=E5=9B=9E=E6=98=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/flow/components/ServiceFlowSubForm.vue | 1 - src/views/flow/components/ServiceFlowSubList.vue | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/flow/components/ServiceFlowSubForm.vue b/src/views/flow/components/ServiceFlowSubForm.vue index 8bf9188..ee61635 100644 --- a/src/views/flow/components/ServiceFlowSubForm.vue +++ b/src/views/flow/components/ServiceFlowSubForm.vue @@ -111,7 +111,6 @@ const disabled = computed(() => { */ function add(record_) { baseInfo.value = record_ - console.log("🌊 ~ add ~ baseInfo.value:", baseInfo.value) edit({ mainId: record_.mainId }); } diff --git a/src/views/flow/components/ServiceFlowSubList.vue b/src/views/flow/components/ServiceFlowSubList.vue index 9be7ba2..d162276 100644 --- a/src/views/flow/components/ServiceFlowSubList.vue +++ b/src/views/flow/components/ServiceFlowSubList.vue @@ -160,6 +160,7 @@ const formData = reactive>({ categoryId: '', typeId: '', directiveId: '', + subId: '', }); //注册table数据 const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({ @@ -277,7 +278,7 @@ function handleIzEnabled(record, izEnabled_) { */ function handleDirective(record: Recordable) { title.value = '服务指令' - formData.directiveId = null + formData.directiveId = record.directiveId opeType.value = 'directive' visible.value = true opeObj.value = record @@ -288,7 +289,7 @@ function handleDirective(record: Recordable) { */ function handleNode(record: Recordable) { title.value = '下一节点' - formData.subId = null + formData.subId = record.subId opeType.value = 'node' visible.value = true opeObj.value = record