From 48895b13d4b4493926f6ce8997deffefc29a371a Mon Sep 17 00:00:00 2001 From: "si@aidatagov.com" Date: Wed, 27 Aug 2025 01:07:21 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B3=BB=E7=BB=9Fcode=E6=94=B9idid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../metadataConfig/taskBizConfig/index.vue | 33 +++++++++++++++---- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/vue-fastapi-frontend/src/views/metadataConfig/taskBizConfig/index.vue b/vue-fastapi-frontend/src/views/metadataConfig/taskBizConfig/index.vue index b011c0b..3581206 100644 --- a/vue-fastapi-frontend/src/views/metadataConfig/taskBizConfig/index.vue +++ b/vue-fastapi-frontend/src/views/metadataConfig/taskBizConfig/index.vue @@ -250,7 +250,7 @@ @@ -285,8 +285,16 @@ @selection-change="handleLeftSelect" > - - + + + + @@ -325,7 +333,15 @@ @selection-change="handleRightSelect" > - + + + @@ -391,7 +407,10 @@ const getDeptTree = async () => { const userStore = useUserStore() const dsSysList = userStore.dsSysList - +const getSrcSysName = (id) => { + const match = dsSysList.find(item => item.id === id); + return match ? match.name : id; +}; const queryForm = reactive({ bizName: '', pageNum: 1, @@ -399,7 +418,7 @@ const queryForm = reactive({ }) const leftQueryForm = reactive({ - ssysCd: '', + ssysId: '', tabName: '', pageNum: 1, pageSize: 10,