From b3244ce77ed795b3d14c06bde6902cb5aa2328ec Mon Sep 17 00:00:00 2001 From: joylink_cuiweidong <364937672@qq.com> Date: Mon, 22 Aug 2022 15:53:28 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E9=93=81=E7=BA=BF=E8=B7=AF=20?= =?UTF-8?q?=E5=87=BA=E5=85=A5=E5=8F=A3=E5=A2=9E=E5=8A=A0=20=E5=B1=9E?= =?UTF-8?q?=E6=80=A7ioDirection=EF=BC=88=E5=87=BA=E5=85=A5=E5=8F=A3?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/scripts/ConstConfig.js | 7 ++++++ .../newMap/newMapdraft/dataRelation/index.vue | 4 ++-- .../indicatorAssociatedInfo/detail.vue | 23 ++++++++++++++++--- .../indicatorAssociatedInfo/route.vue | 16 +++++++++++++ 4 files changed, 45 insertions(+), 5 deletions(-) diff --git a/src/scripts/ConstConfig.js b/src/scripts/ConstConfig.js index d4c4be54c..d0c665bf2 100644 --- a/src/scripts/ConstConfig.js +++ b/src/scripts/ConstConfig.js @@ -257,6 +257,13 @@ export default { trainingType: [ // 实训类型 { enlabel: 'single operation', label: '单操', value: 'single'}, { enlabel: 'scene operation', label: '场景', value: 'scene'} + ], + ioDirectionList:[ // 出入口类型 + {value:'DOWN_IN_STATION', label:'下行进站'}, + {value:'UP_IN_STATION', label :'上行进站'}, + {value:'DOWN_OUT_STATION', label:'下行出站'}, + {value:'UP_OUT_STATION', label:'上行出站'}, + {value:'BOTH_WAY_STATION', label:'双向'} ] } }; diff --git a/src/views/newMap/newMapdraft/dataRelation/index.vue b/src/views/newMap/newMapdraft/dataRelation/index.vue index c775bc312..4bb85ee5a 100644 --- a/src/views/newMap/newMapdraft/dataRelation/index.vue +++ b/src/views/newMap/newMapdraft/dataRelation/index.vue @@ -58,7 +58,7 @@ export default { TurnedOperate, DwellTimeOperate, ContinueProtectOperate, - IndicatorAssociatedInfo + IndicatorAssociatedInfo // DestinationOperate }, props: { @@ -99,7 +99,7 @@ export default { if (this.$route.query.lineCode == '15' || this.$route.query.lineCode == '16') { this.tabList = [ {label: '大铁进路', name:'bigRoutingOperate', menus:BigRoutingOperate}, - {label: '指示灯关联', name: 'indicatorAssociatedInfo', menus: IndicatorAssociatedInfo} + {label: '出入口', name: 'indicatorAssociatedInfo', menus: IndicatorAssociatedInfo} // {label: this.$t('map.routing'), name:'routing', menus:RoutingOperate} ]; this.enabledTab = 'bigRoutingOperate'; diff --git a/src/views/newMap/newMapdraft/dataRelation/indicatorAssociatedInfo/detail.vue b/src/views/newMap/newMapdraft/dataRelation/indicatorAssociatedInfo/detail.vue index 36b3148c3..8df1abbfa 100644 --- a/src/views/newMap/newMapdraft/dataRelation/indicatorAssociatedInfo/detail.vue +++ b/src/views/newMap/newMapdraft/dataRelation/indicatorAssociatedInfo/detail.vue @@ -1,5 +1,5 @@