diff --git a/src/views/newMap/displayBaSiDi/atr.vue b/src/views/newMap/displayBaSiDi/atr.vue
index db495d133..726cbe586 100644
--- a/src/views/newMap/displayBaSiDi/atr.vue
+++ b/src/views/newMap/displayBaSiDi/atr.vue
@@ -15,7 +15,7 @@
- 所有列车
+ 所有列车
当前状态:
@@ -26,7 +26,7 @@
- 单列车号
+ 单列车号
@@ -53,7 +53,7 @@
- 时刻表调度
+ 时刻表调度
列车个数
@@ -72,7 +72,7 @@
- 列车间隔调度-前调
+ 列车间隔调度-前调
计算
@@ -80,7 +80,7 @@
- 列车间隔调度-前调+后调
+ 列车间隔调度-前调+后调
最小
@@ -105,7 +105,7 @@
- 关闭自动调度
+ 关闭自动调度
最大
@@ -203,9 +203,9 @@ export default {
name:'ATRDialog',
data() {
return {
- train: 'all',
+ train: '',
trainCode: '',
- atrMode: 'REGULATION_OFF',
+ atrMode: '',
intervalMode: '',
trainInterval: 90,
min: '',
@@ -219,7 +219,7 @@ export default {
tableData4: [],
showTrainList: [],
input: '',
- timeTerm: 'stop',
+ timeTerm: '',
sortStationList: [],
noStopList: [],
dialogShow:false,
@@ -255,11 +255,13 @@ export default {
const stand = this.$store.getters['map/getDeviceByCode'](item.code);
item.time = stand.parkingTime;
});
+ this.trainCode = '';
} else if (val === 'one' && this.trainCode) {
this.tableData1.forEach(item => {
const stand = this.$store.getters['map/getDeviceByCode'](item.code);
item.time = stand.parkingTimeMap[this.trainCode];
});
+ this.atrMode = 'REGULATION_OFF';
}
},
trainCode(val) {
@@ -386,11 +388,13 @@ export default {
},
doClose() {
this.dialogShow = false;
+ this.reset();
},
reset() {
this.train = '';
this.atrMode = '';
this.timeTerm = '';
+ this.trainCode = '';
},
commit() {
if (!this.train || (this.train === 'one' && !this.trainCode)) {