From 605ac5dd12dc733f62d0df9fd874432908cc0ebb Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期四, 12 十二月 2024 17:47:04 +0800 Subject: [PATCH] Merge branch 'test' of http://47.103.154.90:83/r/WI/Web.Admin.V1.0 into test --- src/views/project/yw/dataManage/workFlowMgr/WorkFlowIndex.vue | 18 ++++++++++-------- 1 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/views/project/yw/dataManage/workFlowMgr/WorkFlowIndex.vue b/src/views/project/yw/dataManage/workFlowMgr/WorkFlowIndex.vue index ff4dc6d..bea9012 100644 --- a/src/views/project/yw/dataManage/workFlowMgr/WorkFlowIndex.vue +++ b/src/views/project/yw/dataManage/workFlowMgr/WorkFlowIndex.vue @@ -74,9 +74,12 @@ <i class="ywifont ywicon-ceshi !text-[20px] text-blue-400 cursor-pointer" @click="openChatTest(scope.row)"></i> </el-tooltip> <el-tooltip effect="dark" content="宸ヤ綔娴佽璁�" placement="top"> - <i class="ywifont ywicon-jiegousheji !text-[15px] text-blue-400 cursor-pointer" @click="gotoFlowDesign(scope.row)"></i> + <i + class="ywifont ywicon-jiegousheji !text-[15px] text-blue-400 cursor-pointer" + @click="gotoFlowDesign(scope.row)" + ></i> </el-tooltip> - + <el-tooltip effect="dark" content="鍒犻櫎" placement="top"> <i class="ywifont ywicon-shanchu !text-[17px] text-red-400 cursor-pointer" @@ -129,12 +132,11 @@ import AHMContainer from '/@/components/layout/AHMContainer.vue'; import LeftTreeByMgr from '/@/components/tree/leftTreeByMgr.vue'; import { useQueryTable } from '/@/hooks/useQueryTable'; +import router from '/@/router'; import { useCompRef } from '/@/utils/types'; import { convertListToTree, debounce, travelTree } from '/@/utils/util'; import { SupervisorPublished, supervisorPublishedMap } from '/@/views/project/yw/lowCode/sqlAmis/types'; import { OptClassificationMap, classificationEnum } from '/@/views/types/metrics'; -import { gotoRoute } from '/@/utils/route'; -import router from '/@/router'; //#region ====================== 宸︿晶鏍戞暟鎹紝tree init ====================== const leftTreeRef = useCompRef(LeftTreeByMgr); const treeLoading = ref(false); @@ -253,7 +255,7 @@ const updateOpt = (formValue) => { travelTree(tableData.value, (value, index, array) => { - if (value.group_id === formValue.group_id) { + if (value.id === formValue.id) { array[index] = { ...array[index], ...formValue, @@ -316,9 +318,9 @@ const gotoFlowDesign = (row) => { router.push({ name: 'FlowApp', - query:{ - id:row.id - } + query: { + id: row.id, + }, }); }; //#endregion -- Gitblit v1.9.3