diff --git a/src/jmapNew/shape/graph/Train/EMouse.js b/src/jmapNew/shape/graph/Train/EMouse.js index cd8bd67f5..87f36f9f4 100644 --- a/src/jmapNew/shape/graph/Train/EMouse.js +++ b/src/jmapNew/shape/graph/Train/EMouse.js @@ -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]));