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)