From f4bdceb42aef38f1cd9431ae5addd37bec4cf60b Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期四, 28 十一月 2024 06:07:21 +0800
Subject: [PATCH] 新的流程页面对接自带的流程页面,查询表单使用同一个接口,其接口内部做判定、流程推进详情页面

---
 src/views/projectProcess/index.vue |   24 +++++++++++++++++-------
 1 files changed, 17 insertions(+), 7 deletions(-)

diff --git a/src/views/projectProcess/index.vue b/src/views/projectProcess/index.vue
index af37779..cab82e0 100644
--- a/src/views/projectProcess/index.vue
+++ b/src/views/projectProcess/index.vue
@@ -226,13 +226,13 @@
       <!-- 鎿嶄綔鍒� -->
       <el-table-column label="鎿嶄綔" width="140" align="center" >
         <template slot-scope="scope">
-          <!--          <el-button-->
-          <!--            size="medium"-->
-          <!--            type="text"-->
-          <!--            icon="el-icon-view"-->
-          <!--            @click="lookProcessDetail(scope.row)"-->
-          <!--          >-->
-          <!--          </el-button>-->
+                    <el-button
+                      size="medium"
+                      type="text"
+                      icon="el-icon-view"
+                      @click="lookProcessDetail(scope.row)"
+                    >
+                    </el-button>
           <!--          <el-button-->
           <!--            v-if="isReserve"-->
           <!--            size="medium"-->
@@ -387,6 +387,16 @@
     this.getList();
   },
   methods: {
+    // 鏌ョ湅璇︽儏
+    lookProcessDetail(row) {
+      this.$router.push({
+        path: '/projectFlow/detail',
+        query: {
+          projectId: row.id,
+          processId: row.flowableProcessId
+        }
+      })
+    },
     closeRunProcess() {
       this.projectRunFrom = {
         projectId: null,

--
Gitblit v1.8.0