From a144a18ab582fd3a8c945cba60bc364dbe7f31e8 Mon Sep 17 00:00:00 2001 From: zhuzhuanzhuan Date: 星期四, 28 三月 2024 16:59:55 +0800 Subject: [PATCH] 1、新增点击设备运行状态图标跳转至设备监控页面并根据状态及当前层级筛选页面对应数据 2、新增点击设备利用率的横向柱状图跳转至统计分析页面并根据所点击层级筛选页面对应数据 3、解决router.push以及router.replace跳转后报错 --- src/views/eam/DailyMaintenanceOrderList.vue | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/views/eam/DailyMaintenanceOrderList.vue b/src/views/eam/DailyMaintenanceOrderList.vue index e4e31a8..cc5e5e8 100644 --- a/src/views/eam/DailyMaintenanceOrderList.vue +++ b/src/views/eam/DailyMaintenanceOrderList.vue @@ -106,12 +106,13 @@ style="margin-left: 8px" >閲嶇疆</a-button> <a-button - v-show="selectedRowKeys.length == 1 && selectionRows[0].status == '8'" + v-show="selectedRowKeys.length == 1 && (selectionRows[0].status === '5' || selectionRows[0].status === '8')" @click="handlePrintInfo(selectionRows[0])" type="primary" style="margin-left: 8px" >绉讳氦鍗曟墦鍗� </a-button> + <!-- v-show="selectedRowKeys.length == 1 && selectionRows[0].status == '8'" --> <!-- <a-button v-show="selectedRowKeys.length > 0" type="primary" @@ -641,6 +642,7 @@ }, searchReset() { + this.onClearSelected(); this.queryParam = { maintenanceType: '2' } this.loadData(1); this.finishTime = [] -- Gitblit v1.9.3