diff --git a/src/views/centerairC/sysControl/index.vue b/src/views/centerairC/sysControl/index.vue
index 948de21..942006b 100644
--- a/src/views/centerairC/sysControl/index.vue
+++ b/src/views/centerairC/sysControl/index.vue
@@ -24,15 +24,7 @@
-
-
-
-
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
@@ -104,22 +107,22 @@ export default {
freezingValve: [], //冷冻蝶阀
coolingValve: [], //冷却蝶阀
coolingTowerOutValve: [], //冷却塔出水阀
- activeName: "host", //设备管理
+ activeName: "valve", //设备管理
};
},
computed: {
statistics() {
const deviceManual = this.deviceList.filter(
- (d) => d.automaticText === false
+ (d) => d.automaticText === true
).length;
const deviceAuto = this.deviceList.filter(
- (d) => d.automaticText === true
+ (d) => d.automaticText === false
).length;
const valveManual = this.valveList.filter(
- (v) => v.automaticText === false
+ (v) => v.automaticText === true
).length;
const valveAuto = this.valveList.filter(
- (v) => v.automaticText === true
+ (v) => v.automaticText === false
).length;
return {
diff --git a/src/views/centerairC/sysMonitor/index.vue b/src/views/centerairC/sysMonitor/index.vue
index ace1240..9a3f0e1 100644
--- a/src/views/centerairC/sysMonitor/index.vue
+++ b/src/views/centerairC/sysMonitor/index.vue
@@ -36,7 +36,7 @@