diff --git a/src/i18n/langs/en/map.js b/src/i18n/langs/en/map.js index 5af4e5438..4b5e47e25 100644 --- a/src/i18n/langs/en/map.js +++ b/src/i18n/langs/en/map.js @@ -558,4 +558,5 @@ export default { chargeStationList:'Managed station list', createModel: 'Create model:', startingPoint: 'Starting point:', + endingPoint: 'Ending point:' }; diff --git a/src/i18n/langs/zh/map.js b/src/i18n/langs/zh/map.js index 2596bb20a..7e6233445 100644 --- a/src/i18n/langs/zh/map.js +++ b/src/i18n/langs/zh/map.js @@ -551,5 +551,6 @@ export default { rightAssociatedSection: '右关联区段:', chargeStationList:'管理车站列表', createModel: '创建方式:', - startingPoint: '起点:' + startingPoint: '起点:', + endingPoint: '终点:' }; diff --git a/src/views/newMap/newMapdraft/mapoperate/section.vue b/src/views/newMap/newMapdraft/mapoperate/section.vue index 209222f83..bb98564c0 100644 --- a/src/views/newMap/newMapdraft/mapoperate/section.vue +++ b/src/views/newMap/newMapdraft/mapoperate/section.vue @@ -29,7 +29,7 @@
- 起点: + {{ this.$t('map.startingPoint') }}
@@ -42,7 +42,7 @@
- 终点: + {{ this.$t('map.endingPoint') }}
@@ -54,7 +54,7 @@
- + {{ $t('map.activate') }} - +
- 新建 + {{ this.$t('map.newConstruction') }}
@@ -518,9 +518,6 @@ export default { relSwitchCode: [ { required: true, message: this.$t('rules.sectionRelSwitchCode'), trigger: 'change' } ], - trainPosType: [ - { required: true, message: this.$t('rules.pleaseSelectTrainDir'), trigger: 'change' } - ], leftSectionCode: [ { validator: validateLeftSection, trigger: 'change' } ],