无人自折=》无人折返

This commit is contained in:
fan 2021-06-30 16:51:23 +08:00
parent 5954a01554
commit d04e35061c

View File

@ -59,18 +59,18 @@ class EMouse extends Group {
direction = this.device.model.right != 1;
}
const turnBackStrategyMap = new Map([
["NONE", '无折返'],
["DEFAULT", '默认'],
["AUTO", '自动换端'],
["UNMANNED", '无人自折'],
['NONE', '无折返'],
['DEFAULT', '默认'],
['AUTO', '自动换端'],
['UNMANNED', '无人折返']
]);
const turnBackStatusMap = new Map([
["NON", '无折返'],
["INIT", '初始化'],
["TO", '开往折返轨'],
["STOP", '到达折返轨停稳'],
["EXIT", '开出折返轨'],
])
['NON', '无折返'],
['INIT', '初始化'],
['TO', '开往折返轨'],
['STOP', '到达折返轨停稳'],
['EXIT', '开出折返轨']
]);
// \nNumber of people: ${this.device.model.num ? this.device.model.num : 0}
const path = window.location.href;
const stationNames = new Map(store.state.map.map.stationList.map(s=>[s.code, s.name]));