|
@@ -49,17 +49,17 @@ export default {
|
|
|
el.energySavingRate ? el.energySavingRate.toFixed(2) : 0
|
|
|
);
|
|
|
if (el.chillerExecuteRateReal >= 75) {
|
|
|
- this.strategy1.push(1);
|
|
|
+ this.strategy1.push(2);
|
|
|
} else {
|
|
|
this.strategy1.push(null);
|
|
|
}
|
|
|
if (el.chillerExecuteRate >= 75) {
|
|
|
- this.strategy2.push(1);
|
|
|
+ this.strategy2.push(2);
|
|
|
} else {
|
|
|
this.strategy2.push(null);
|
|
|
}
|
|
|
if (el.chillerExecuteRateReal < 75 || el.chillerExecuteRate < 75) {
|
|
|
- this.strategy3.push(1);
|
|
|
+ this.strategy3.push(2);
|
|
|
} else {
|
|
|
this.strategy3.push(null);
|
|
|
}
|
|
@@ -115,7 +115,7 @@ export default {
|
|
|
show: false
|
|
|
},
|
|
|
min: 0,
|
|
|
- max: 50,
|
|
|
+ max: 100,
|
|
|
position: "right",
|
|
|
axisLabel: {
|
|
|
formatter: "{value} %"
|
|
@@ -149,8 +149,7 @@ export default {
|
|
|
splitLine: {
|
|
|
show: false
|
|
|
},
|
|
|
- min: 0,
|
|
|
- max: 100,
|
|
|
+
|
|
|
position: "left",
|
|
|
|
|
|
axisLabel: {
|