From 284ae5b9ff466a9b0cd6be7eed2aefa765feee6f Mon Sep 17 00:00:00 2001
From: cqf <2252655793@qq.com>
Date: 星期四, 26 五月 2022 13:43:28 +0800
Subject: [PATCH] 隐患汇总跳转查询优化

---
 src/views/summaryPotentialSafetyHzards/summaryList.vue |   57 +++++++++++++++++----------------------------------------
 1 files changed, 17 insertions(+), 40 deletions(-)

diff --git a/src/views/summaryPotentialSafetyHzards/summaryList.vue b/src/views/summaryPotentialSafetyHzards/summaryList.vue
index 2bbee58..6baa8dc 100644
--- a/src/views/summaryPotentialSafetyHzards/summaryList.vue
+++ b/src/views/summaryPotentialSafetyHzards/summaryList.vue
@@ -48,14 +48,17 @@
                 <el-table-column prop="measure" label="整改措施" width="150" align="center"></el-table-column>
                 <el-table-column prop="ht_branch" label="责任单位" align="center"></el-table-column>
                 <el-table-column prop="duty_officer" label="责任人" align="center"></el-table-column>
-                <el-table-column prop="alter_time" label="限改时间" width="120" :formatter="formatColumnDate" align="center"></el-table-column>
+                <el-table-column prop="alter_time" label="限改时间" width="120" :formatter="formatColumnDate"
+                                 align="center"></el-table-column>
                 <!-- <el-table-column prop="ht_level" label="级别" align="center"> </el-table-column> -->
             </el-table-column>
             <el-table-column label="整改情况" align="center">
-                <el-table-column prop="ACCOMPLISHTIME" label="完成时间" width="110px" :formatter="formatColumnDate" align="center"></el-table-column>
+                <el-table-column prop="ACCOMPLISHTIME" label="完成时间" width="110px" :formatter="formatColumnDate"
+                                 align="center"></el-table-column>
                 <el-table-column prop="CALLBACKRESULT" label="复查结果" align="center"></el-table-column>
                 <el-table-column prop="CALLBACKPERSON" label="复查人" align="center"></el-table-column>
-                <el-table-column prop="CALLBACKTIME" label="复查时间" width="120" :formatter="formatColumnDate" align="center"></el-table-column>
+                <el-table-column prop="CALLBACKTIME" label="复查时间" width="120" :formatter="formatColumnDate"
+                                 align="center"></el-table-column>
             </el-table-column>
             <el-table-column label="隐患处理状态" align="center">
                 <template slot-scope="scope">
@@ -68,7 +71,7 @@
             <el-table-column prop="DTRisk_bankId" label="是否关联" align="center">
                 <template slot-scope="scope">
                     <span style="color: red"
-                        v-if="scope.row.DTRisk_bankId==0 || scope.row.DTRisk_bankId=='' || scope.row.DTRisk_bankId==null">未关联</span>
+                          v-if="scope.row.DTRisk_bankId==0 || scope.row.DTRisk_bankId=='' || scope.row.DTRisk_bankId==null">未关联</span>
                     <span v-else>已关联</span>
                 </template>
             </el-table-column>
@@ -106,7 +109,7 @@
     </div>
 </template>
 <script>
-import {getPageList} from "@/api/sgyhpczl/safetyHazardAccount";
+import {getPageList} from "@/api/sgyhpczl/summaryPotentialSafetyHzards.js";
 import {initJCBM, initYHLX, initBC, initJCLB, initYHBM, initYHJB, initLlr} from "@/api/sgyhpczl/initSelect";
 
 export default {
@@ -143,10 +146,10 @@
         };
     },
     mounted() {
-        if(this.$route.query.searchData.query_condition!=null){
+        if (this.$route.query.searchData.query_condition != null) {
             var searchData = this.$route.query.searchData;
             for (const argumentsKey in searchData) {
-                this.listQuery.form[argumentsKey] = searchData[argumentsKey];
+                this.listQuery[argumentsKey] = searchData[argumentsKey];
             }
             this.getPageList()
         }
@@ -159,33 +162,6 @@
 
     },
     methods: {
-        deleteBatch() {
-            if (this.selectedList == null || this.selectedList.length == 0) {
-                this.$message({type: 'warning', message: '至少选中一条数据', duration: 3000})
-                return
-            }
-            var ids = this.selectedList.map((obj) => {
-                return obj.id
-            }).join(",")
-            this.$confirm('确认删除吗', '提示', {
-                confirmButtonText: '确认',
-                cancelButtonText: '取消',
-                type: 'warning'
-            })
-                .then(() => {
-                    delDanger(ids).then(() => {
-                        this.getPageList()
-                        this.$notify({
-                            title: "成功",
-                            message: "删除成功",
-                            type: "success",
-                            duration: 2000,
-                        });
-                    });
-                })
-                .catch(error => {
-                });
-        },
         changeBox(val) {
             this.selectedList = []
             val.forEach((item) => {
@@ -253,7 +229,6 @@
         },
         getPageList() {
             this.listQuery.page = 1
-            this.checkTime()
             getPageList(this.listQuery).then(res => {
                 if (res.data.ok == 1) {
                     this.tableData = res.data.data.items
@@ -341,13 +316,13 @@
             let dt = new Date(data)
             return dt.getFullYear() + '-' + (dt.getMonth() + 1) + '-' + dt.getDate() + ' '
         },
-        showDetails(row){
+        showDetails(row) {
             this.$router.push({
                 path: "/dangerDetails",
-                query:{"id":row.id,"route":"/summaryList"}
+                query: {"id": row.id, "route": "/summaryList"}
             })
         },
-        close(){
+        close() {
             this.$router.push({
                 path: "/summaryPotentialSafetyHzards"
             })
@@ -389,11 +364,13 @@
     background-color: #034ea2;
     background-color: #034ea2;
 }
-.btn{
+
+.btn {
     text-align: center;
     margin-top: 20px;
 }
-.blue-font-color:hover{
+
+.blue-font-color:hover {
     cursor: pointer;
     color: blue;
 }

--
Gitblit v1.9.2