From eeda2785150e807e36391ebeeeb885973f495ffc Mon Sep 17 00:00:00 2001
From: 13937891274 <kxc0822>
Date: 星期一, 16 五月 2022 09:27:39 +0800
Subject: [PATCH] 安全隐患台账

---
 src/views/oneFromanother/index.vue |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/src/views/oneFromanother/index.vue b/src/views/oneFromanother/index.vue
index dec2dd1..1b21012 100644
--- a/src/views/oneFromanother/index.vue
+++ b/src/views/oneFromanother/index.vue
@@ -98,8 +98,9 @@
             <el-table-column prop="curWarningLevel" label="下发单位" align="center"></el-table-column>
             <el-table-column prop="date" label="流程操作" align="center">
                 <template slot-scope="scope">
-                    <el-button @click="handleClick(scope.row)" type="text" size="small">不存在</el-button>
-                    <el-button @click="handleClick(scope.row)" type="text" size="small">存在</el-button>
+                    <el-button @click="handleClick(scope.row)" type="text"  size="small">不存在</el-button>
+                    <el-button @click="handleClick(scope.row)" type="text" v-if="false" size="small">追查结果</el-button>
+                    <el-button @click="handleClick(scope.row,'存在')" type="text" size="small">存在</el-button>
                 </template>
             </el-table-column>
         </el-table>
@@ -116,6 +117,7 @@
             >
             </el-pagination>
         </div>
+        
     </div>
 </template>
 <script>
@@ -133,6 +135,13 @@
                 this.$router.push({
                     path:'/manage'
                 })
+            },
+            handleClick(data,val){
+                if(val=='存在'){
+                    this.$router.push({
+                        path:'/exist'
+                    })
+                }
             }
         }
     }

--
Gitblit v1.9.2