|
@@ -165,7 +165,7 @@ export default {
|
|
|
this.activeTabStation = arr[1]
|
|
|
this.handleClosed()
|
|
|
setTimeout(() => {
|
|
|
- this.handleChange(4)
|
|
|
+ this.handleChange(4,true)
|
|
|
}, 3000);
|
|
|
}
|
|
|
},
|
|
@@ -193,7 +193,7 @@ export default {
|
|
|
this.$store.commit("activeTab", syzArray[0].name);
|
|
|
});
|
|
|
},
|
|
|
- handleChange(val) {
|
|
|
+ handleChange(val,flag) {
|
|
|
if (val !== 10) {
|
|
|
this.matricesDisplay = false;
|
|
|
this.syzDialogShow = false;
|
|
@@ -218,7 +218,13 @@ export default {
|
|
|
this.temperatureDisplay = true;
|
|
|
break;
|
|
|
case 4:
|
|
|
- this.syzDialogShow = true;
|
|
|
+ if (flag) {
|
|
|
+ this.syzDialogShow = true;
|
|
|
+ } else {
|
|
|
+ this.activeTabStation = ''
|
|
|
+ this.syzDialogShow = true;
|
|
|
+ }
|
|
|
+
|
|
|
break;
|
|
|
case 5:
|
|
|
this.agcDisplay = true;
|