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/FaultInfoList.vue |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/views/eam/FaultInfoList.vue b/src/views/eam/FaultInfoList.vue
index 71d38ce..ef332c6 100644
--- a/src/views/eam/FaultInfoList.vue
+++ b/src/views/eam/FaultInfoList.vue
@@ -147,7 +147,7 @@
   import { mixinDevice } from '@/utils/mixin'
   import { JeecgListMixin } from '@/mixins/JeecgListMixin'
   import FaultInfoModal from './modules/FaultInfoModal'
-import { putAction } from '../../api/manage'
+  import { putAction } from '../../api/manage'
 
   export default {
     name: 'FaultInfoList',
@@ -158,6 +158,7 @@
     data () {
       return {
         description: '璁惧浜嬫晠鐧昏绠$悊椤甸潰',
+        disableMixinCreated: true,
         // 琛ㄥご
         columns: [
           {
@@ -396,7 +397,11 @@
       }
     },
     created() {
-    this.getSuperFieldList();
+    if (this.$route.query) {
+      this.queryParam.id = this.$route.query.id;
+    }
+    this.loadData()
+    this.initDictConfig();
     },
     computed: {
       importExcelUrl: function(){

--
Gitblit v1.9.3