From d1a8061067e21463d8544be8bd840984596ed4a9 Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期四, 02 一月 2025 16:08:42 +0800 Subject: [PATCH] 工作流查看 --- src/views/project/yw/dataManage/workFlowMgr/WorkFlowIndex.vue | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/src/views/project/yw/dataManage/workFlowMgr/WorkFlowIndex.vue b/src/views/project/yw/dataManage/workFlowMgr/WorkFlowIndex.vue index 6d20971..79c0890 100644 --- a/src/views/project/yw/dataManage/workFlowMgr/WorkFlowIndex.vue +++ b/src/views/project/yw/dataManage/workFlowMgr/WorkFlowIndex.vue @@ -71,7 +71,7 @@ <el-table-column prop="create_user" width="100" label="鍒涘缓鑰�" show-overflow-tooltip align="center" /> <el-table-column prop="create_time" width="180" label="鍒涘缓鏃堕棿" show-overflow-tooltip align="center" /> <el-table-column prop="note" width="180" label="璇存槑" show-overflow-tooltip align="center" /> - <el-table-column label="鎿嶄綔" width="160" fixed="right" show-overflow-tooltip align="center"> + <el-table-column label="鎿嶄綔" width="180" fixed="right" show-overflow-tooltip align="center"> <template #default="scope"> <div class="space-x-2.5"> <el-tooltip effect="dark" content="缂栬緫" placement="top"> @@ -84,6 +84,12 @@ <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-yulan !text-[16px] text-blue-400 cursor-pointer" + @click="gotoFlowView(scope.row)" ></i> </el-tooltip> <el-tooltip @@ -380,6 +386,15 @@ }, }); }; + +const gotoFlowView = (row) => { + router.push({ + name: 'FlowAppView', + query: { + id: row.id, + }, + }); +}; //#endregion //#region ====================== 鏀瑰彉鍙戝竷鐘舵�� ====================== -- Gitblit v1.9.3