From cbf8ef1da81eb3bb3128f1a64736939f8a58f698 Mon Sep 17 00:00:00 2001 From: cdf <857448963@qq.com> Date: Fri, 7 Jun 2024 10:12:15 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pqs/supervise/terminal/components/deviceLedgerTable.vue | 5 ++++- .../pqs/supervise/terminal/components/monitorLedgerTable.vue | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/views/pqs/supervise/terminal/components/deviceLedgerTable.vue b/src/views/pqs/supervise/terminal/components/deviceLedgerTable.vue index aadbe44f..b02d339a 100644 --- a/src/views/pqs/supervise/terminal/components/deviceLedgerTable.vue +++ b/src/views/pqs/supervise/terminal/components/deviceLedgerTable.vue @@ -77,6 +77,8 @@ const tableStore = new TableStore({ '投运': 'success', '停运': 'danger', '检修': 'warning', + '调试': 'warning', + '退运': 'danger', }, }, @@ -114,7 +116,8 @@ const tableStore = new TableStore({ } }) -tableStore.table.params.runF=[] + +tableStore.table.params.runF=null tableStore.table.params.searchValue='' const runFlagList = [{id:0,name:'运行'},{id:1,name:'检修'},{id:2,name:'停运'},{id:3,name:'调试'},{id:4,name:'退运'}] diff --git a/src/views/pqs/supervise/terminal/components/monitorLedgerTable.vue b/src/views/pqs/supervise/terminal/components/monitorLedgerTable.vue index bcf35f7b..fd0b0b92 100644 --- a/src/views/pqs/supervise/terminal/components/monitorLedgerTable.vue +++ b/src/views/pqs/supervise/terminal/components/monitorLedgerTable.vue @@ -144,9 +144,11 @@ const tableStore = new TableStore({ } } }) -tableStore.table.params.runF=[] + +tableStore.table.params.runF=null tableStore.table.params.searchValue='' + const runFlagList = [{id:0,name:'运行'},{id:1,name:'检修'},{id:2,name:'停运'},{id:3,name:'调试'},{id:4,name:'退运'}] provide('tableStore', tableStore)