فهرست منبع

各部件温度页面接口修改,经济运行首页修改

sunzehao 1 ماه پیش
والد
کامیت
000b21e540

+ 6 - 6
src/views/IntegratedAlarm/reliability/partsTemperatureAnalyse/index2.vue

@@ -190,9 +190,9 @@ export default {
         },
       ],
       checkboxs: cityOptions,
-      checkedCities: ["越限", "超限", "坏点"],
-      checkAll: true,
-      isIndeterminate: true,
+      checkedCities: [], //"越限", "超限", "坏点"
+      checkAll: false,
+      isIndeterminate: false,
       controlErorCodes: [
         "控制成功",
         "控制命令发送失败",
@@ -340,14 +340,14 @@ export default {
       let selectStatus = "";
       let statusArr = [];
       this.tableData = []
-      if (this.checkedCities.length < 3) {
+    //   if (this.checkedCities.length < 3) {
         this.checkedCities.forEach((item) => {
           let status = this.statusList.filter((val) => val.name === item)[0];
           if (status.lable) {
             statusArr.push(status.lable);
           }
         });
-      }
+    //   }
       selectStatus = statusArr.join(",");
       const id =
         this.current === "all"
@@ -360,7 +360,7 @@ export default {
           id,
           status: selectStatus,
           pagenum: this.pagenum,
-          pagesize: 30,
+          pagesize: 50,
         })
         .then((res) => {
           this.changeData(res)

+ 11 - 1
src/views/economicsOperation/nxfHomePage/index.vue

@@ -255,7 +255,17 @@
                 })
                 this.changeRightData()
             },
-        }
+        },
+        watch: {
+            $route: {
+                handler(val) {
+                    if (val.path !== "/economicsOperation") {
+                        clearInterval(this.timmer);
+                        this.timmer = null;
+                    }
+                },
+            },
+        },
     };
 </script>