From f892440294f6c590a7e429115f6cad62c01be70c Mon Sep 17 00:00:00 2001 From: fan <18706759286@163.com> Date: Thu, 18 Jun 2020 10:05:12 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fuzhou_01/menus/dialog/standDetail.vue | 2 +- .../menus/dialog/standDetainTrainAll.vue | 10 +- .../fuzhou_01/menus/dialog/standRunLevel.vue | 6 +- .../fuzhou_01/menus/dialog/standStopTime.vue | 4 +- .../theme/fuzhou_01/operationConfig.js | 40 +- .../theme/fuzhou_01/operationConfigGlobal.js | 236 ++--- src/jmapNew/theme/xian_01/operationConfig.js | 287 +++--- .../theme/xian_01/operationConfigGlobal.js | 820 ------------------ src/scripts/cmdPlugin/ValidateHandler.js | 2 + 9 files changed, 281 insertions(+), 1126 deletions(-) delete mode 100644 src/jmapNew/theme/xian_01/operationConfigGlobal.js diff --git a/src/jmapNew/theme/fuzhou_01/menus/dialog/standDetail.vue b/src/jmapNew/theme/fuzhou_01/menus/dialog/standDetail.vue index 3531f2fb9..2cceb5de8 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/dialog/standDetail.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/dialog/standDetail.vue @@ -151,7 +151,7 @@ export default { }; this.loading = true; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { this.loading = false; if (valid) { this.doClose(); diff --git a/src/jmapNew/theme/fuzhou_01/menus/dialog/standDetainTrainAll.vue b/src/jmapNew/theme/fuzhou_01/menus/dialog/standDetainTrainAll.vue index 43198ba0e..ffe509465 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/dialog/standDetainTrainAll.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/dialog/standDetainTrainAll.vue @@ -15,10 +15,10 @@ - {{ $t('menu.uplinkBroadly') }} + {{ $t('menu.uplinkBroadly') }} - {{ $t('menu.downlinkBroadly') }} + {{ $t('menu.downlinkBroadly') }} @@ -112,7 +112,6 @@ export default { /** status 01: 未扣车*/ const stand = (this.$store.getters['map/getDeviceByCode'](elem.code) || {}); const station = (this.$store.getters['map/getDeviceByCode'](elem.stationCode) || {}); - console.log(stand, stand.centerHoldTrain); if (station && station.visible && stand && stand.centerHoldTrain && elem.right == this.upDown) { this.tempData.push({ stationName: station.name, standName: elem.name }); } @@ -146,7 +145,7 @@ export default { this.loadTableData(); const operate = { operation: OperationEvent.StationStand.cancelDetainTrainAll.choose.operation, - val: `${upDown}` + val: (this.rightUp && upDown) || (!this.rightUp && !upDown) ? '02' : '01' }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { @@ -160,12 +159,11 @@ export default { over: true, operation: OperationEvent.StationStand.cancelDetainTrainAll.menu.operation, cmdType: CMD.Stand.CMD_STAND_WHOLE_LINE_CANCEL_HOLD_TRAIN, - val: this.upDown, + val: (this.rightUp && this.upDown) || (!this.rightUp && !this.upDown) ? '02' : '01', param: { isRight: this.upDown } }; - this.loading = true; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { this.loading = false; diff --git a/src/jmapNew/theme/fuzhou_01/menus/dialog/standRunLevel.vue b/src/jmapNew/theme/fuzhou_01/menus/dialog/standRunLevel.vue index 7467d0388..c3996b2dc 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/dialog/standRunLevel.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/dialog/standRunLevel.vue @@ -145,14 +145,14 @@ export default { if (index != 0) { const stationStand = this.$store.getters['map/getDeviceByCode'](this.stationStandList[index + 1].code); const station = this.$store.getters['map/getDeviceByCode'](stationStand.stationCode); - this.tempData.push({ name: `${stationStand.name}(${station.name})`, time: selected.runLevelTime ? selected.runLevelTime : 0, check: selected.runLevelTimeValidStatus }); + this.tempData.push({ name: `${stationStand.name}(${station.name})`, time: selected.runLevelTime ? selected.runLevelTime : 0, check: !!selected.runLevelTimeForever }); } } else { // 上行时,此站不是最后一站 if (index != this.stationList.length) { const stationStand = this.$store.getters['map/getDeviceByCode'](this.stationStandList[index + 1].code); const station = this.$store.getters['map/getDeviceByCode'](stationStand.stationCode); - this.tempData.push({ name: `${stationStand.name}(${station.name})`, time: selected.runLevelTime ? selected.runLevelTime : 0, check: selected.runLevelTimeValidStatus }); + this.tempData.push({ name: `${stationStand.name}(${station.name})`, time: selected.runLevelTime ? selected.runLevelTime : 0, check: !!selected.runLevelTimeForever }); } } }, @@ -229,6 +229,7 @@ export default { if (this.isConfirm) { const operate = { operation: OperationEvent.StationStand.setRunLevel.menu.operation, + val: [`${this.time}`, `${this.tempData[0].check}`].join('::'), param:{ runLevelTimeForever: !!this.tempData[0].check, runLevelTime: this.time @@ -242,6 +243,7 @@ export default { if (valid) { this.doClose(); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); + delete operate.val; this.$refs.confirmControl.doShow(operate); } }).catch(() => { diff --git a/src/jmapNew/theme/fuzhou_01/menus/dialog/standStopTime.vue b/src/jmapNew/theme/fuzhou_01/menus/dialog/standStopTime.vue index e3af32eb0..7eedac086 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/dialog/standStopTime.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/dialog/standStopTime.vue @@ -185,6 +185,7 @@ export default { const operate = { operation: OperationEvent.StationStand.setStopTime.choose1.operation, + val: `${control}`, param: {} }; @@ -224,7 +225,7 @@ export default { commit() { const operate = { operation: OperationEvent.StationStand.setStopTime.menu.operation, - val: [`${this.control}`, this.time, this.effective].join('::'), + val: [`${this.control}`, `${this.control === '01' ? -1 : this.time}`, `${this.control === '01' ? true : this.effective}`].join('::'), param:{ parkingTime: this.control === '01' ? -1 : this.time, parkingAlwaysValid: this.control === '01' ? true : this.effective @@ -238,6 +239,7 @@ export default { if (valid) { this.doClose(); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); + delete operate.val; this.$refs.confirmControl.doShow(operate); } }).catch(() => { diff --git a/src/jmapNew/theme/fuzhou_01/operationConfig.js b/src/jmapNew/theme/fuzhou_01/operationConfig.js index d7f833093..1dce1900f 100644 --- a/src/jmapNew/theme/fuzhou_01/operationConfig.js +++ b/src/jmapNew/theme/fuzhou_01/operationConfig.js @@ -173,7 +173,7 @@ export default { productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '502', tip: '鼠标右键菜单选择【跳停】' }, - { deviceType: '06', orderNum: 2, operateCode: '502', tip: '鼠标左键点击【确定】按钮', val: '{11}' } + { deviceType: '06', orderNum: 2, operateCode: '502', tip: '鼠标左键点击【确定】按钮' } ] }, { @@ -187,7 +187,7 @@ export default { productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '503', tip: '鼠标右键菜单选择【取消跳停】' }, - { deviceType: '06', orderNum: 2, operateCode: '503', tip: '鼠标左键点击【确定】按钮', val: '{11}' } + { deviceType: '06', orderNum: 2, operateCode: '503', tip: '鼠标左键点击【确定】按钮' } ] }, { @@ -216,8 +216,8 @@ export default { stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '509', tip: '鼠标右键菜单选择【设置停站时间】' }, { deviceType: '06', orderNum: 2, operateCode: '5092', tip: '鼠标左键点击,选择【自动】', val: '01' }, - { deviceType: '06', orderNum: 3, operateCode: '509', tip: '鼠标左键点击【确认】按钮', val: '01::20::true' }, - { deviceType: '06', orderNum: 4, operateCode: '5091', tip: '鼠标左键点击【确认】按钮', val: '01::20::true' } + { deviceType: '06', orderNum: 3, operateCode: '509', tip: '鼠标左键点击【确认】按钮', val: '01::-1::true'}, + { deviceType: '06', orderNum: 4, operateCode: '5091', tip: '鼠标左键点击【确认】按钮'} ] }, { @@ -231,10 +231,11 @@ export default { productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '509', tip: '鼠标右键菜单选择【设置停站时间】' }, - { deviceType: '06', orderNum: 2, operateCode: '5092', tip: '鼠标左键点击,选择【人工】', val: '02' }, + // { deviceType: '06', orderNum: 2, operateCode: '5092', tip: '鼠标左键点击,选择【人工】', val: '02' }, { deviceType: '06', orderNum: 3, operateCode: '5094', tip: '输入或鼠标点击,调整为【20】', val: '20' }, - { deviceType: '06', orderNum: 4, operateCode: '509', tip: '鼠标左键点击【确认】按钮', val: '02::20::true' }, - { deviceType: '06', orderNum: 5, operateCode: '5091', tip: '鼠标左键点击【确认】按钮', val: '02::20::true' } + { deviceType: '06', orderNum: 4, operateCode: '5093', tip: '鼠标左键点击,选择【一直有效】', val: 'true' }, + { deviceType: '06', orderNum: 5, operateCode: '509', tip: '鼠标左键点击【确认】按钮', val: '02::20::true'}, + { deviceType: '06', orderNum: 6, operateCode: '5091', tip: '鼠标左键点击【确认】按钮'} ] }, { @@ -248,11 +249,10 @@ export default { productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '509', tip: '鼠标右键菜单选择【设置停站时间】' }, - { deviceType: '06', orderNum: 2, operateCode: '5092', tip: '鼠标左键点击,选择【人工】', val: '02' }, + // { deviceType: '06', orderNum: 2, operateCode: '5092', tip: '鼠标左键点击,选择【人工】', val: '02' }, { deviceType: '06', orderNum: 3, operateCode: '5094', tip: '输入或鼠标点击,调整为【20】', val: '20' }, - { deviceType: '06', orderNum: 4, operateCode: '5093', tip: '鼠标左键点击,选择【一次有效】', val: 'false' }, { deviceType: '06', orderNum: 5, operateCode: '509', tip: '鼠标左键点击【确认】按钮', val: '02::20::false' }, - { deviceType: '06', orderNum: 6, operateCode: '5091', tip: '鼠标左键点击【确认】按钮', val: '02::20::false' } + { deviceType: '06', orderNum: 6, operateCode: '5091', tip: '鼠标左键点击【确认】按钮'} ] }, { @@ -267,8 +267,9 @@ export default { stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '510', tip: '鼠标右键菜单选择【设置运行等级】' }, { deviceType: '06', orderNum: 2, operateCode: '5101', tip: '鼠标左键点击,选择【60】', val: '60' }, - { deviceType: '06', orderNum: 3, operateCode: '510', tip: '鼠标左键点击【确认】按钮', val: '60::true' }, - { deviceType: '06', orderNum: 4, operateCode: '5102', tip: '鼠标左键点击【确认】按钮', val: '60::true' } + { deviceType: '06', orderNum: 3, operateCode: '5103', tip: '鼠标左键点击,选择【一直有效】', val: 'true' }, + { deviceType: '06', orderNum: 4, operateCode: '510', tip: '鼠标左键点击【确认】按钮', val: '60::true' }, + { deviceType: '06', orderNum: 5, operateCode: '5102', tip: '鼠标左键点击【确认】按钮' } ] }, { @@ -283,9 +284,8 @@ export default { stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '510', tip: '鼠标右键菜单选择【设置运行等级】' }, { deviceType: '06', orderNum: 2, operateCode: '5101', tip: '鼠标左键点击,选择【60】', val: '60' }, - { deviceType: '06', orderNum: 3, operateCode: '5103', tip: '鼠标左键点击,取消选择【一直有效】', val: 'false' }, - { deviceType: '06', orderNum: 4, operateCode: '510', tip: '鼠标左键点击【确认】按钮', val: '60::false' }, - { deviceType: '06', orderNum: 5, operateCode: '5102', tip: '鼠标左键点击【确认】按钮', val: '60::false' } + { deviceType: '06', orderNum: 3, operateCode: '510', tip: '鼠标左键点击【确认】按钮', val: '60::false' }, + { deviceType: '06', orderNum: 4, operateCode: '5102', tip: '鼠标左键点击【确认】按钮' } ] }, { @@ -444,7 +444,7 @@ export default { { deviceType: '03', orderNum: 2, operateCode: '4081', tip: '鼠标左键点击【下达】按钮' }, { deviceType: '03', orderNum: 3, operateCode: '4082', tip: '鼠标左键点击【确认】按钮' }, { deviceType: '03', orderNum: 4, operateCode: '4083', tip: '鼠标左键点击【确认1】按钮' }, - { deviceType: '03', orderNum: 5, operateCode: '4084', tip: '鼠标左键点击【确认2】按钮', val: '5' }, + { deviceType: '03', orderNum: 5, operateCode: '4084', tip: '鼠标左键点击【确认2】按钮'}, { deviceType: '03', orderNum: 6, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } ] }, @@ -620,7 +620,7 @@ export default { { deviceType: '02', orderNum: 2, operateCode: '1141', tip: '鼠标左键点击【下达】按钮' }, { deviceType: '02', orderNum: 3, operateCode: '1142', tip: '鼠标左键点击【确认】按钮' }, { deviceType: '02', orderNum: 4, operateCode: '1143', tip: '鼠标左键点击【确认1】按钮' }, - { deviceType: '02', orderNum: 5, operateCode: '1144', tip: '鼠标左键点击【确认2】按钮', val: '5' }, + { deviceType: '02', orderNum: 5, operateCode: '1144', tip: '鼠标左键点击【确认2】按钮' }, { deviceType: '02', orderNum: 6, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } ] }, @@ -637,7 +637,7 @@ export default { stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '301', tip: '鼠标右键菜单选择【进路选排】' }, { deviceType: '04', orderNum: 2, operateCode: '3011', tip: '鼠标左键选择进路名称【{3}】', val: '{4}' }, - { deviceType: '04', orderNum: 3, operateCode: '301', tip: '鼠标左键点击【确定】按钮' }, + { deviceType: '04', orderNum: 3, operateCode: '301', tip: '鼠标左键点击【确定】按钮', val: '{4}' }, { deviceType: '04', orderNum: 4, operateCode: '3012', tip: '鼠标左键点击【确定】按钮' } ] }, @@ -761,7 +761,7 @@ export default { stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '315', tip: '鼠标右键菜单选择【自排开】' }, { deviceType: '04', orderNum: 2, operateCode: '3151', tip: '鼠标左键选择控制状态为"人工"的进路', val: '{6}' }, - { deviceType: '04', orderNum: 3, operateCode: '315', tip: '鼠标左键点击【确定】按钮' } + { deviceType: '04', orderNum: 3, operateCode: '315', tip: '鼠标左键点击【确定】按钮', val: '{6}' } ] }, { @@ -776,7 +776,7 @@ export default { stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '314', tip: '鼠标右键菜单选择【自排关】' }, { deviceType: '04', orderNum: 2, operateCode: '3141', tip: '鼠标左键选择第一条进路', val: '{6}' }, - { deviceType: '04', orderNum: 3, operateCode: '314', tip: '鼠标左键点击【确定】按钮' } + { deviceType: '04', orderNum: 3, operateCode: '314', tip: '鼠标左键点击【确定】按钮', val: '{6}' } ] }, { diff --git a/src/jmapNew/theme/fuzhou_01/operationConfigGlobal.js b/src/jmapNew/theme/fuzhou_01/operationConfigGlobal.js index e99041826..c2a4419a5 100644 --- a/src/jmapNew/theme/fuzhou_01/operationConfigGlobal.js +++ b/src/jmapNew/theme/fuzhou_01/operationConfigGlobal.js @@ -3,11 +3,11 @@ export default { { maxDuration: 20, minDuration: 15, - operateType: '0103', + operateType: 'CM_Apply_For_Center_Control', skinCode: '05', trainingName: 'Switch to central control ({1})', trainingRemark: 'Control permission conversion, switch station control to central control', - trainingType: '01', + trainingType: 'ControlConvertMenu', productTypes: ['02'], stepVOList: [ { deviceType: 'bar', orderNum: 1, operateCode: '0024', tip: 'Left click the menu bar [control mode conversion]on the top' }, @@ -22,11 +22,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0101', + operateType: 'CM_Apply_For_Station_Control', skinCode: '05', trainingName: 'Switch to station control ({1})', trainingRemark: 'Control permission conversion, Force to station control', - trainingType: '01', + trainingType: 'ControlConvertMenu', productTypes: ['01'], stepVOList: [ { deviceType: 'bar', orderNum: 1, operateCode: '0024', tip: 'Left click the menu bar [control mode conversion]on the top' }, @@ -41,11 +41,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0102', + operateType: 'CM_Force_Station_Control', skinCode: '05', trainingName: 'Force to station control ({1})', trainingRemark: 'Control permission conversion,Force to station control', - trainingType: '01', + trainingType: 'ControlConvertMenu', productTypes: ['01'], stepVOList: [ { deviceType: 'bar', orderNum: 1, operateCode: '0024', tip: 'Left click the menu bar [control mode conversion]on the top' }, @@ -61,11 +61,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0501', + operateType: 'Stand_Set_Hold_Train', skinCode: '05', trainingName: 'Detain Train({10}-{12}station)', trainingRemark: 'Set the detaining function', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '504', tip: 'Right click to select [Detain Train]' }, @@ -75,11 +75,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0502', + operateType: 'Stand_Cancel_Hold_Train', skinCode: '05', trainingName: 'Cancel Detaining({10}-{12}The platform)', trainingRemark: 'Set cancelling detaining function', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '505', tip: 'Right click to select [Cancel Detaining]]' }, @@ -89,11 +89,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0503', + operateType: 'Stand_Force_Cancel_Hold_Train', skinCode: '05', trainingName: 'Force Canceling Detaining({10}-{12}The platform)', trainingRemark: 'Force to cancel train detaining function', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '506', tip: 'Right click to select [Force Canceling Detaining]' }, @@ -103,68 +103,68 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0504', + operateType: 'Stand_Whole_Line_Cancel_Hold_Train', skinCode: '05', trainingName: 'Cancel train detaining along the whole line({10}-{12}The platform)', trainingRemark: 'Cancel train detaining along the whole line (default the whole uplink and downlink )', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '508', tip: 'Right click to select [Cancel train detaining along the whole line]' }, - { deviceType: '06', orderNum: 2, operateCode: '508', tip: 'Left click [confirm] ', val: '{11}' } + { deviceType: '06', orderNum: 2, operateCode: '508', tip: 'Left click [confirm] ' } ] }, { maxDuration: 15, minDuration: 8, - operateType: '0504', + operateType: 'Stand_Whole_Line_Cancel_Hold_Train', skinCode: '05', trainingName: 'Cancel train detaining along the whole line({10}-{12}The platform)', trainingRemark: 'Cancel train detaining along the whole line (select the uplink or downlink ))', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '508', tip: 'Right click to select [Cancel train detaining along the whole line]' }, { deviceType: '06', orderNum: 2, operateCode: '5081', tip: 'Right click to select[{14}the whole line', val: '{13}' }, - { deviceType: '06', orderNum: 3, operateCode: '508', tip: 'Left click [confirm]', val: '{13}' } + { deviceType: '06', orderNum: 3, operateCode: '508', tip: 'Left click [confirm]'} ] }, { maxDuration: 15, minDuration: 8, - operateType: '0505', + operateType: 'Stand_Set_Jump_Stop', skinCode: '05', trainingName: 'Skip this station to continue moving({10}-{12}The platform)', trainingRemark: 'Set the skip to continue moving function', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '502', tip: 'Right click to select [Skip this station to continue moving]' }, - { deviceType: '06', orderNum: 2, operateCode: '502', tip: 'Left click [confirm]', val: '{11}' } + { deviceType: '06', orderNum: 2, operateCode: '502', tip: 'Left click [confirm]'} ] }, { maxDuration: 15, minDuration: 8, - operateType: '0506', + operateType: 'Stand_Cancel_Jump_Stop', skinCode: '05', trainingName: 'Cancel skiping({10}-{12}The platform)', trainingRemark: 'Set cancelling skiping function', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '503', tip: 'Right click to select [Cancel skiping]' }, - { deviceType: '06', orderNum: 2, operateCode: '503', tip: 'Left click [confirm]', val: '{11}' } + { deviceType: '06', orderNum: 2, operateCode: '503', tip: 'Left click [confirm]'} ] }, { maxDuration: 8, minDuration: 5, - operateType: '0507', + operateType: 'Stand_View_Status', skinCode: '05', trainingName: 'Query Platform status({10}-{12}The platform)', trainingRemark: 'Query platform status function', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '507', tip: 'Right click to select [Query Platform status]' }, @@ -174,95 +174,95 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0508', + operateType: 'Stand_Set_Park_Time', skinCode: '05', trainingName: 'Set the stop time({10}-{12}The platform)', trainingRemark: 'Set the stop time (auto, permanent validity)', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '509', tip: 'Right click to select [Set the stop time]' }, { deviceType: '06', orderNum: 2, operateCode: '5092', tip: 'Left click to select [auto]', val: '01' }, - { deviceType: '06', orderNum: 3, operateCode: '509', tip: 'Left click [confirm] ', val: '01::20::true' }, - { deviceType: '06', orderNum: 4, operateCode: '5091', tip: 'Left click [confirm] ', val: '01::20::true' } + { deviceType: '06', orderNum: 3, operateCode: '509', tip: 'Left click [confirm] ' }, + { deviceType: '06', orderNum: 4, operateCode: '5091', tip: 'Left click [confirm] ' } ] }, { maxDuration: 15, minDuration: 8, - operateType: '0508', + operateType: 'Stand_Set_Park_Time', skinCode: '05', trainingName: 'Set the stop time({10}-{12}The platform)', trainingRemark: 'Set the stop time (manual, 20 seconds, permanent validity)', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '509', tip: 'Right click to select [Set the stop time]' }, { deviceType: '06', orderNum: 2, operateCode: '5092', tip: 'Left click to select [manual]', val: '02' }, { deviceType: '06', orderNum: 3, operateCode: '5094', tip: 'Set time [20]', val: '20' }, - { deviceType: '06', orderNum: 4, operateCode: '509', tip: 'Left click [confirm] ', val: '02::20::true' }, - { deviceType: '06', orderNum: 5, operateCode: '5091', tip: 'Left click [confirm]', val: '02::20::true' } + { deviceType: '06', orderNum: 4, operateCode: '509', tip: 'Left click [confirm] '}, + { deviceType: '06', orderNum: 5, operateCode: '5091', tip: 'Left click [confirm]'} ] }, { maxDuration: 15, minDuration: 8, - operateType: '0508', + operateType: 'Stand_Set_Park_Time', skinCode: '05', trainingName: 'Set the stop time({10}-{12}The platform)', trainingRemark: 'Set the stop time (manual, 20 seconds, once valid )', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '509', tip: 'Right click to select [Set the stop time]' }, { deviceType: '06', orderNum: 2, operateCode: '5092', tip: 'Left click to select [manual]', val: '02' }, { deviceType: '06', orderNum: 3, operateCode: '5094', tip: 'Set time [20]', val: '20' }, { deviceType: '06', orderNum: 4, operateCode: '5093', tip: 'Left click to select "once valid ".', val: 'false' }, - { deviceType: '06', orderNum: 5, operateCode: '509', tip: 'Left click [confirm] ', val: '02::20::false' }, - { deviceType: '06', orderNum: 6, operateCode: '5091', tip: 'Left click [confirm] ', val: '02::20::false' } + { deviceType: '06', orderNum: 5, operateCode: '509', tip: 'Left click [confirm] '}, + { deviceType: '06', orderNum: 6, operateCode: '5091', tip: 'Left click [confirm] '} ] }, { maxDuration: 15, minDuration: 8, - operateType: '0509', + operateType: 'Stand_Set_Run_Time', skinCode: '05', trainingName: 'Set Operation speed Level({10}-{12}The platform)', trainingRemark: 'Set Operation speed Level(set the interval running time to 60, permanent validity)', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '510', tip: 'Right click to select [Set Operation speed Level]' }, { deviceType: '06', orderNum: 2, operateCode: '5101', tip: 'Left click to select [60]', val: '60' }, - { deviceType: '06', orderNum: 3, operateCode: '510', tip: 'Left click [confirm] ', val: '60::true' }, - { deviceType: '06', orderNum: 4, operateCode: '5102', tip: 'Left click [confirm] ', val: '60::true' } + { deviceType: '06', orderNum: 3, operateCode: '510', tip: 'Left click [confirm] '}, + { deviceType: '06', orderNum: 4, operateCode: '5102', tip: 'Left click [confirm] '} ] }, { maxDuration: 15, minDuration: 8, - operateType: '0509', + operateType: 'Stand_Set_Run_Time', skinCode: '05', trainingName: 'Set Operation speed Level({10}-{12}The platform)', trainingRemark: 'Set Operation speed Level (set the interval running time to 60, once valid )', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '510', tip: 'Right click to select [Set Operation speed Level]' }, { deviceType: '06', orderNum: 2, operateCode: '5101', tip: 'Left click to select [60]', val: '60' }, { deviceType: '06', orderNum: 3, operateCode: '5103', tip: 'Left click to cancel [permanent validity].', val: 'false' }, - { deviceType: '06', orderNum: 4, operateCode: '510', tip: 'Left click [confirm] ', val: '60::false' }, - { deviceType: '06', orderNum: 5, operateCode: '5102', tip: 'Left click [confirm] ', val: '60::false' } + { deviceType: '06', orderNum: 4, operateCode: '510', tip: 'Left click [confirm] '}, + { deviceType: '06', orderNum: 5, operateCode: '5102', tip: 'Left click [confirm] '} ] }, { maxDuration: 15, minDuration: 8, - operateType: '0510', + operateType: 'Stand_Early_Depart', skinCode: '05', trainingName: 'Set departure in advance({10}-{12}The platform)', trainingRemark: 'Set departure inadvance function', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '501', tip: 'Right click to select [Set departure in advance]' }, @@ -272,11 +272,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0511', + operateType: 'Stand_Set_Reentry_Strategy', skinCode: '05', trainingName: 'Manual return strategy setting({10}-{12}The platform)', trainingRemark: 'Manual return strategy setting function', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '511', tip: 'Right click to select [Manual return strategy setting]' }, @@ -288,11 +288,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0401', + operateType: 'Section_Fault_Unlock', skinCode: '05', trainingName: 'Section fault unlocking({8}{9})', trainingRemark: 'Fault unlocking', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '402', tip: 'Right click to select [Section fault unlocking]' }, @@ -305,11 +305,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0402', + operateType: 'Section_Cut_Off', skinCode: '05', trainingName: 'Section resection({8}{9})', trainingRemark: 'Section resection', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '405', tip: 'Right click to select [Section resection]' }, @@ -319,11 +319,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0403', + operateType: 'Section_Active', skinCode: '05', trainingName: 'Section activation({8}{9})', trainingRemark: 'Section activation function', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '406', tip: 'Right click to select [Section activation]' }, @@ -333,11 +333,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0404', + operateType: 'Section_Axis_Pre_Reset', skinCode: '05', trainingName: 'Axis pre-reset({8}{9})', trainingRemark: 'Axis pre-reset function', - trainingType: '04', + trainingType: 'Section', productTypes: ['01'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '409', tip: 'Right click to select [Axis pre-reset]' }, @@ -350,11 +350,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0405', + operateType: 'Section_Block', skinCode: '05', trainingName: 'Section blockade({8}{9})', trainingRemark: 'Section blockade function', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '403', tip: 'Right click to select [Section blockade]' }, @@ -364,11 +364,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0406', + operateType: 'Section_Unblock', skinCode: '05', trainingName: 'Section unblockade({8}{9})', trainingRemark: 'Section unblockade function', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '404', tip: 'Right click to select [Section unblockade]' }, @@ -381,11 +381,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0407', + operateType: 'Section_Set_Limit_Speed', skinCode: '05', trainingName: 'Set speed limit on the section({8}{9})', trainingRemark: 'Set speed limit on the section (speed limit value: 5)', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '407', tip: 'Right click to select [Set speed limit on the section]' }, @@ -400,11 +400,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0408', + operateType: 'Section_Cancel_Limit_Speed', skinCode: '05', trainingName: 'Cancel speed limit on the section({8}{9})', trainingRemark: 'Cancel speed limit on the section', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '408', tip: 'Right click to select [Cancel speed limit on the section]' }, @@ -419,11 +419,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0301', + operateType: 'Switch_Single_Lock', skinCode: '05', trainingName: 'Single lock of turnout({7})', trainingRemark: 'Single lock of turnout', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '103', tip: 'Right click to select [Single lock of turnout]' }, @@ -433,11 +433,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0302', + operateType: 'Switch_Single_Unlock', skinCode: '05', trainingName: 'Single release of turnout({7})', trainingRemark: 'Single release of turnout', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '104', tip: 'Right click to select [Single release of turnout]' }, @@ -450,11 +450,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0303', + operateType: 'Switch_Section_Block', skinCode: '05', trainingName: 'Turnout section closure({7})', trainingRemark: 'Turnout section closure ', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '105', tip: 'Right click to select [Turnout section closure]' }, @@ -464,11 +464,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0304', + operateType: 'Switch_Section_Unblock', skinCode: '05', trainingName: 'Turnout section unsealing({7})', trainingRemark: 'Turnout section unsealing function', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '106', tip: 'Right click to select [Turnout section unsealing]' }, @@ -481,11 +481,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0305', + operateType: 'Switch_Turn', skinCode: '05', trainingName: 'Turnout rotation({7})', trainingRemark: 'Turnout rotation({15}turn{16})', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '107', tip: 'Right click to select [Turnout rotation]' }, @@ -495,11 +495,11 @@ export default { { maxDuration: 20, minDuration: 10, - operateType: '0306', + operateType: 'Switch_Fault_Unlock', skinCode: '05', trainingName: 'Turnout section fault unlocking({7})', trainingRemark: 'Turnout section fault unlocking function', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '109', tip: 'Right click to select [Turnout section fault unlocking]' }, @@ -512,11 +512,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0307', + operateType: 'Switch_Axis_Pre_Reset', skinCode: '05', trainingName: 'Turnout section axile pre reset({7})', trainingRemark: 'Turnout section axile pre reset function', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '110', tip: 'Right click to select [Turnout section axile pre reset]' }, @@ -529,11 +529,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0308', + operateType: 'Switch_Cut_Off', skinCode: '05', trainingName: 'Section resection({7})', trainingRemark: 'Section resection', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '111', tip: 'Right click to select [Section resection]' }, @@ -543,11 +543,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0309', + operateType: 'Switch_Active', skinCode: '05', trainingName: 'Section activation({7})', trainingRemark: 'Section activation function', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '112', tip: 'Right click to select [Section activation]' }, @@ -557,11 +557,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0310', + operateType: 'Switch_Set_Limit_Speed', skinCode: '05', trainingName: 'Set speed limit on the turnout section({7})', trainingRemark: 'Set speed limit on the section (speed limit value: 5)', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '113', tip: 'Right click to select [Set speed limit on the turnout section]' }, @@ -576,11 +576,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0311', + operateType: 'Switch_Cancel_Limit_Speed', skinCode: '05', trainingName: 'Cancel speed limit on the turnout section({7})', trainingRemark: 'Cancel speed limit on the turnout section', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '114', tip: 'Right click to select [Cancel speed limit on the turnout section]' }, @@ -595,11 +595,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0201', + operateType: 'Signal_Set_Route', skinCode: '05', trainingName: 'Route selection({3})', trainingRemark: 'Route selection', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01', '02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '301', tip: 'Right click to select [Route selection]' }, @@ -611,11 +611,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0202', + operateType: 'Signal_Cancel_Route', skinCode: '05', trainingName: 'Cancel the route({3})', trainingRemark: 'Cancel the route', - trainingType: '02', + trainingType: 'Signal', productTypes: ['02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '303', tip: 'Right click to select [Cancel the route]' }, @@ -626,11 +626,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0202', + operateType: 'Signal_Cancel_Route', skinCode: '05', trainingName: 'Cancel the route({3})', trainingRemark: 'Cancel the route', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '303', tip: 'Right click to select [Cancel the route]' }, @@ -640,11 +640,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0203', + operateType: 'Signal_Block', skinCode: '05', trainingName: 'Signal closure({5})', trainingRemark: 'Signal closure', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01', '02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '306', tip: 'Right click to select [Signal closure]' }, @@ -654,11 +654,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0204', + operateType: 'Signal_Unblock', skinCode: '05', trainingName: 'Signal unsealing({5})', trainingRemark: 'Signal unsealing', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01', '02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '307', tip: 'Right click to select [Signal unsealing]' }, @@ -672,11 +672,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0205', + operateType: 'Signal_Close_Signal', skinCode: '05', trainingName: 'Signal Off({3})', trainingRemark: 'Signal Off', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01', '02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '313', tip: 'Right click to select [Signal Off]' }, @@ -687,11 +687,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0206', + operateType: 'Signal_Reopen_Signal', skinCode: '05', trainingName: 'Signal reopen({3})', trainingRemark: 'Signal reopen', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01', '02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '304', tip: 'Right click to select [Signal reopen]' }, @@ -702,11 +702,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0207', + operateType: 'Signal_Set_Guide', skinCode: '05', trainingName: 'Guide route handling({3})', trainingRemark: 'Guide route handling', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '308', tip: 'Right click to select [Guide route handling]' }, @@ -719,11 +719,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0208', + operateType: 'Signal_Open_Auto_Setting', skinCode: '05', trainingName: 'Start automatic routing({5})', trainingRemark: 'Start automatic routing', - trainingType: '02', + trainingType: 'Signal', productTypes: ['02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '315', tip: 'Right click to select [Start automatic routing]' }, @@ -734,11 +734,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0209', + operateType: 'Signal_Close_Auto_Setting', skinCode: '05', trainingName: 'Close automatic routing({5})', trainingRemark: 'Close automatic routing', - trainingType: '02', + trainingType: 'Signal', productTypes: ['02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '314', tip: 'Right click to select [Close automatic routing]' }, @@ -749,11 +749,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0210', + operateType: 'Signal_Find_Routes_Status', skinCode: '05', trainingName: 'Route control status query({5})', trainingRemark: 'Query the route control status ', - trainingType: '02', + trainingType: 'Signal', productTypes: ['02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '316', tip: 'Right click to select [Route control status query]' }, @@ -763,11 +763,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0211', + operateType: 'Signal_Set_CI_Auto', skinCode: '05', trainingName: 'Set Interlock for Auto Routing({5})', trainingRemark: 'Set Interlock for Auto Routing', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '309', tip: 'Right click to select [Set Interlock for Auto Routing]' }, @@ -777,11 +777,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0212', + operateType: 'Signal_Cancel_CI_Auto', skinCode: '05', trainingName: 'Cancel Interlock setting for Auto Routing({5})', trainingRemark: 'Cancel Interlock setting for Auto Routing', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '310', tip: 'Right click to select [Cancel Interlock setting for Auto Routing]' }, @@ -791,11 +791,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0213', + operateType: 'Signal_Set_CI_Auto_Trigger', skinCode: '05', trainingName: 'Set Interlock for Auto Trigger({5})', trainingRemark: 'Set Interlock for Auto Trigger', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '311', tip: 'Right click to select [Set Interlock for Auto Trigger]' }, @@ -805,11 +805,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0214', + operateType: 'Signal_Cancel_CI_Auto_Trigger', skinCode: '05', trainingName: 'Cancel Interlock setting for Auto Trigger({5})', trainingRemark: 'Cancel Interlock setting for Auto Trigger', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '312', tip: 'Right click to select[Cancel Interlock setting for Auto Trigger]' }, diff --git a/src/jmapNew/theme/xian_01/operationConfig.js b/src/jmapNew/theme/xian_01/operationConfig.js index b038248fa..dfbe061c1 100644 --- a/src/jmapNew/theme/xian_01/operationConfig.js +++ b/src/jmapNew/theme/xian_01/operationConfig.js @@ -1,42 +1,13 @@ -// 操作规则定义 -// {id: "1", trainingType: "01", name: "车站名称"} -// {id: "2", trainingType: "01", name: "车站控制模式编号"} -// {id: "3", trainingType: "02", name: "进路名称"} -// {id: "4", trainingType: "02", name: "进路编号"} -// {id: "5", trainingType: "02", name: "信号机名称"} -// {id: "6", trainingType: "02", name: "信号机编号"} - -// {id: "7", trainingType: "03", name: "道岔名称"} -// {id: "17", trainingType: "03", name: "道岔编码"} -// {id: "15", trainingType: "03", name: "道岔位置"} -// {id: "16", trainingType: "03", name: "道岔位置(反)"} -// {id: "21", trainingType: "03", name: "车站名称"} -// {id: "23", trainingType: "03", name: "车站编号"} -// {id: "24", trainingType: "03", name: "道岔计轴区段编号"} -// {id: "25", trainingType: "03", name: "道岔计轴区段名称"} - -// {id: "8", trainingType: "04", name: "物理区段名称"} -// {id: "9", trainingType: "04", name: "逻辑区段名称"} -// {id: "18", trainingType: "04", name: "逻辑区段编码"} -// {id: "19", trainingType: "04", name: "区段编号"} -// {id: "20", trainingType: "04", name: "车站名称"} -// {id: "22", trainingType: "04", name: "车站编号"} - -// {id: "10", trainingType: "05", name: "车站名称"} -// {id: "11", trainingType: "05", name: "站台行驶方向编号"} -// {id: "12", trainingType: "05", name: "站台行驶方向"} -// {id: "13", trainingType: "05", name: "站台行驶方向编号(反)"} -// {id: "14", trainingType: "05", name: "站台行驶方向(反)"} export default { list: [ { maxDuration: 20, minDuration: 15, - operateType: '0103', + operateType: 'CM_Apply_For_Center_Control', skinCode: '02', trainingName: '转为中控({1})', trainingRemark: '控制权限转换,站控转中控', - trainingType: '01', + trainingType: 'ControlConvertMenu', productTypes: ['02'], stepVOList: [ { deviceType: 'bar', orderNum: 1, operateCode: '0024', tip: '鼠标左键点击顶部菜单栏【控制模式转换】' }, @@ -51,11 +22,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0101', + operateType: 'CM_Apply_For_Station_Control', skinCode: '02', trainingName: '转为站控({1})', trainingRemark: '控制权限转换,中控转站控', - trainingType: '01', + trainingType: 'ControlConvertMenu', productTypes: ['01'], stepVOList: [ { deviceType: 'bar', orderNum: 1, operateCode: '0024', tip: '鼠标左键点击顶部菜单栏【控制模式转换】' }, @@ -70,11 +41,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0102', + operateType: 'CM_Force_Station_Control', skinCode: '02', trainingName: '强制站控({1})', trainingRemark: '控制权限转换,强制站控', - trainingType: '01', + trainingType: 'ControlConvertMenu', productTypes: ['01'], stepVOList: [ { deviceType: 'bar', orderNum: 1, operateCode: '0024', tip: '鼠标左键点击顶部菜单栏【控制模式转换】' }, @@ -90,11 +61,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0501', + operateType: 'Stand_Set_Hold_Train', skinCode: '02', trainingName: '站台扣车({10}-{12}站台)', trainingRemark: '设置扣车功能', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '504', tip: '鼠标右键菜单选择【扣车】' }, @@ -104,11 +75,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0502', + operateType: 'Stand_Cancel_Hold_Train', skinCode: '02', trainingName: '站台取消扣车({10}-{12}站台)', trainingRemark: '设置取消扣车功能', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '505', tip: '鼠标右键菜单选择【取消扣车】' }, @@ -118,11 +89,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0503', + operateType: 'Stand_Force_Cancel_Hold_Train', skinCode: '02', trainingName: '强制取消扣车({10}-{12}站台)', trainingRemark: '强制取消扣车功能', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '506', tip: '鼠标右键菜单选择【强制取消扣车】' }, @@ -132,68 +103,68 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0504', + operateType: 'Stand_Whole_Line_Cancel_Hold_Train', skinCode: '02', trainingName: '全线取消扣车({10}-{12}站台)', trainingRemark: '全线取消扣车功能(默认上行全线/下行全线,不做选择)', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '508', tip: '鼠标右键菜单选择【全线取消扣车】' }, - { deviceType: '06', orderNum: 2, operateCode: '508', tip: '鼠标左键点击【确定】按钮', val: '{11}' } + { deviceType: '06', orderNum: 2, operateCode: '508', tip: '鼠标左键点击【确定】按钮' } ] }, { maxDuration: 15, minDuration: 8, - operateType: '0504', + operateType: 'Stand_Whole_Line_Cancel_Hold_Train', skinCode: '02', trainingName: '全线取消扣车({10}-{12}站台)', trainingRemark: '全线取消扣车功能(选择上/下行全线)', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '508', tip: '鼠标右键菜单选择【全线取消扣车】' }, { deviceType: '06', orderNum: 2, operateCode: '5081', tip: '鼠标右键菜单选择【{14}全线】', val: '{13}' }, - { deviceType: '06', orderNum: 3, operateCode: '508', tip: '鼠标左键点击【确定】按钮', val: '{13}' } + { deviceType: '06', orderNum: 3, operateCode: '508', tip: '鼠标左键点击【确定】按钮' } ] }, { maxDuration: 15, minDuration: 8, - operateType: '0505', + operateType: 'Stand_Set_Jump_Stop', skinCode: '02', trainingName: '站台跳停({10}-{12}站台)', trainingRemark: '设置跳停功能', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '502', tip: '鼠标右键菜单选择【跳停】' }, - { deviceType: '06', orderNum: 2, operateCode: '502', tip: '鼠标左键点击【确定】按钮', val: '{11}' } + { deviceType: '06', orderNum: 2, operateCode: '502', tip: '鼠标左键点击【确定】按钮'} ] }, { maxDuration: 15, minDuration: 8, - operateType: '0506', + operateType: 'Stand_Cancel_Jump_Stop', skinCode: '02', trainingName: '取消跳停({10}-{12}站台)', trainingRemark: '设置取消跳停功能', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '503', tip: '鼠标右键菜单选择【取消跳停】' }, - { deviceType: '06', orderNum: 2, operateCode: '503', tip: '鼠标左键点击【确定】按钮', val: '{11}' } + { deviceType: '06', orderNum: 2, operateCode: '503', tip: '鼠标左键点击【确定】按钮'} ] }, { maxDuration: 8, minDuration: 5, - operateType: '0507', + operateType: 'Stand_View_Status', skinCode: '02', trainingName: '查询站台状态({10}-{12}站台)', trainingRemark: '查询站台状态功能', - trainingType: '05', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '507', tip: '鼠标右键菜单选择【查询站台状态】' }, @@ -203,44 +174,44 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0508', + operateType: 'Stand_Set_Park_Time', skinCode: '02', trainingName: '设置停站时间({10}-{12}站台)', trainingRemark: '设置停站时间(自动, 一直有效)', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '509', tip: '鼠标右键菜单选择【设置停站时间】' }, { deviceType: '06', orderNum: 2, operateCode: '5092', tip: '鼠标左键点击,选择【自动】', val: '01' }, - { deviceType: '06', orderNum: 3, operateCode: '509', tip: '鼠标左键点击【确认】按钮', val: '01::20::true' }, - { deviceType: '06', orderNum: 4, operateCode: '5091', tip: '鼠标左键点击【确认】按钮', val: '01::20::true' } + { deviceType: '06', orderNum: 3, operateCode: '509', tip: '鼠标左键点击【确认】按钮' }, + { deviceType: '06', orderNum: 4, operateCode: '5091', tip: '鼠标左键点击【确认】按钮' } ] }, { maxDuration: 15, minDuration: 8, - operateType: '0508', + operateType: 'Stand_Set_Park_Time', skinCode: '02', trainingName: '设置停站时间({10}-{12}站台)', trainingRemark: '设置停站时间(人工, 20秒, 一直有效)', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '509', tip: '鼠标右键菜单选择【设置停站时间】' }, { deviceType: '06', orderNum: 2, operateCode: '5092', tip: '鼠标左键点击,选择【人工】', val: '02' }, { deviceType: '06', orderNum: 3, operateCode: '5094', tip: '输入或鼠标点击,调整为【20】', val: '20' }, - { deviceType: '06', orderNum: 4, operateCode: '509', tip: '鼠标左键点击【确认】按钮', val: '02::20::true' }, - { deviceType: '06', orderNum: 5, operateCode: '5091', tip: '鼠标左键点击【确认】按钮', val: '02::20::true' } + { deviceType: '06', orderNum: 4, operateCode: '509', tip: '鼠标左键点击【确认】按钮' }, + { deviceType: '06', orderNum: 5, operateCode: '5091', tip: '鼠标左键点击【确认】按钮'} ] }, { maxDuration: 15, minDuration: 8, - operateType: '0508', + operateType: 'Stand_Set_Park_Time', skinCode: '02', trainingName: '设置停站时间({10}-{12}站台)', trainingRemark: '设置停站时间(人工, 20秒, 一次有效)', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '509', tip: '鼠标右键菜单选择【设置停站时间】' }, @@ -254,44 +225,44 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0509', + operateType: 'Stand_Set_Run_Time', skinCode: '02', trainingName: '设置运行等级({10}-{12}站台)', trainingRemark: '设置运行等级(设置区间运行时间为60,一直有效)', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '510', tip: '鼠标右键菜单选择【设置运行等级】' }, { deviceType: '06', orderNum: 2, operateCode: '5101', tip: '鼠标左键点击,选择【60】', val: '60' }, - { deviceType: '06', orderNum: 3, operateCode: '510', tip: '鼠标左键点击【确认】按钮', val: '60::true' }, - { deviceType: '06', orderNum: 4, operateCode: '5102', tip: '鼠标左键点击【确认】按钮', val: '60::true' } + { deviceType: '06', orderNum: 3, operateCode: '510', tip: '鼠标左键点击【确认】按钮'}, + { deviceType: '06', orderNum: 4, operateCode: '5102', tip: '鼠标左键点击【确认】按钮'} ] }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Set_Run_Time', + // skinCode: '02', + // trainingName: '设置运行等级({10}-{12}站台)', + // trainingRemark: '设置运行等级(设置区间运行时间为60,一次有效)', + // trainingType: 'Stand', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '510', tip: '鼠标右键菜单选择【设置运行等级】' }, + // { deviceType: '06', orderNum: 2, operateCode: '5101', tip: '鼠标左键点击,选择【60】', val: '60' }, + // { deviceType: '06', orderNum: 3, operateCode: '5103', tip: '鼠标左键点击,取消选择【一直有效】', val: 'false' }, + // { deviceType: '06', orderNum: 4, operateCode: '510', tip: '鼠标左键点击【确认】按钮', val: '60::false' }, + // { deviceType: '06', orderNum: 5, operateCode: '5102', tip: '鼠标左键点击【确认】按钮', val: '60::false' } + // ] + // }, { maxDuration: 15, minDuration: 8, - operateType: '0509', - skinCode: '02', - trainingName: '设置运行等级({10}-{12}站台)', - trainingRemark: '设置运行等级(设置区间运行时间为60,一次有效)', - trainingType: '05', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '510', tip: '鼠标右键菜单选择【设置运行等级】' }, - { deviceType: '06', orderNum: 2, operateCode: '5101', tip: '鼠标左键点击,选择【60】', val: '60' }, - { deviceType: '06', orderNum: 3, operateCode: '5103', tip: '鼠标左键点击,取消选择【一直有效】', val: 'false' }, - { deviceType: '06', orderNum: 4, operateCode: '510', tip: '鼠标左键点击【确认】按钮', val: '60::false' }, - { deviceType: '06', orderNum: 5, operateCode: '5102', tip: '鼠标左键点击【确认】按钮', val: '60::false' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0510', + operateType: 'Stand_Early_Depart', skinCode: '02', trainingName: '设置提前发车({10}-{12}站台)', trainingRemark: '设置提前发车功能', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '501', tip: '鼠标右键菜单选择【设置提前发车】' }, @@ -301,11 +272,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0511', + operateType: 'Stand_Set_Reentry_Strategy', skinCode: '02', trainingName: '人工折返策略设置({10}-{12}站台)', trainingRemark: '人工折返策略设置功能', - trainingType: '05', + trainingType: 'Stand', productTypes: ['02'], stepVOList: [ { deviceType: '06', orderNum: 1, operateCode: '511', tip: '鼠标右键菜单选择【人工折返策略设置】' }, @@ -317,11 +288,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0401', + operateType: 'Section_Fault_Unlock', skinCode: '02', trainingName: '区段故障解锁({8}{9})', trainingRemark: '故障解锁功能', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '402', tip: '鼠标右键菜单选择【区段故障解锁】' }, @@ -334,11 +305,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0402', + operateType: 'Section_Cut_Off', skinCode: '02', trainingName: '区段切除({8}{9})', trainingRemark: '区段切除', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '405', tip: '鼠标右键菜单选择【区段切除】' }, @@ -348,11 +319,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0403', + operateType: 'Section_Active', skinCode: '02', trainingName: '区段激活({8}{9})', trainingRemark: '区段激活功能', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '406', tip: '鼠标右键菜单选择【区段激活】' }, @@ -362,11 +333,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0404', + operateType: 'Section_Axis_Pre_Reset', skinCode: '02', trainingName: '计轴预复位({8}{9})', trainingRemark: '计轴预复位功能', - trainingType: '04', + trainingType: 'Section', productTypes: ['01'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '409', tip: '鼠标右键菜单选择【区段计轴预复位】' }, @@ -379,11 +350,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0405', + operateType: 'Section_Block', skinCode: '02', trainingName: '区段封锁({8}{9})', trainingRemark: '区段封锁功能', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '403', tip: '鼠标右键菜单选择【区段封锁】' }, @@ -393,11 +364,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0406', + operateType: 'Section_Unblock', skinCode: '02', trainingName: '区段解封({8}{9})', trainingRemark: '区段解封功能', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '404', tip: '鼠标右键菜单选择【区段解封】' }, @@ -410,11 +381,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0407', + operateType: 'Section_Set_Limit_Speed', skinCode: '02', trainingName: '区段设置限速({8}{9})', trainingRemark: '区段设置限速功能(限速值:5)', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '407', tip: '鼠标右键菜单选择【区段设置限速】' }, @@ -429,11 +400,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0408', + operateType: 'Section_Cancel_Limit_Speed', skinCode: '02', trainingName: '区段取消限速({8}{9})', trainingRemark: '区段取消限速功能', - trainingType: '04', + trainingType: 'Section', productTypes: ['01', '02'], stepVOList: [ { deviceType: '03', orderNum: 1, operateCode: '408', tip: '鼠标右键菜单选择【区段取消限速】' }, @@ -448,11 +419,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0301', + operateType: 'Switch_Single_Lock', skinCode: '02', trainingName: '道岔单锁({7})', trainingRemark: '道岔单锁功能', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '103', tip: '鼠标右键菜单选择【道岔单锁】' }, @@ -462,11 +433,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0302', + operateType: 'Switch_Single_Unlock', skinCode: '02', trainingName: '道岔单解({7})', trainingRemark: '道岔单解功能', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '104', tip: '鼠标右键菜单选择【道岔单解】' }, @@ -479,11 +450,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0303', + operateType: 'Switch_Section_Block', skinCode: '02', trainingName: '道岔区段封闭({7})', trainingRemark: '道岔区段封闭功能', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '105', tip: '鼠标右键菜单选择【道岔区段封闭】' }, @@ -493,11 +464,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0304', + operateType: 'Switch_Section_Unblock', skinCode: '02', trainingName: '道岔区段解封({7})', trainingRemark: '道岔区段解封功能', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '106', tip: '鼠标右键菜单选择【道岔区段解封】' }, @@ -510,11 +481,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0305', + operateType: 'Switch_Turn', skinCode: '02', trainingName: '道岔转动({7})', trainingRemark: '道岔转动功能({15}转{16})', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '107', tip: '鼠标右键菜单选择【道岔转动】' }, @@ -524,11 +495,11 @@ export default { { maxDuration: 20, minDuration: 10, - operateType: '0306', + operateType: 'Switch_Fault_Unlock', skinCode: '02', trainingName: '道岔区段故障解锁({7})', trainingRemark: '道岔区段故障解锁功能', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '109', tip: '鼠标右键菜单选择【道岔区段故障解锁】' }, @@ -541,11 +512,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0307', + operateType: 'Switch_Axis_Pre_Reset', skinCode: '02', trainingName: '道岔区段计轴预复位({7})', trainingRemark: '道岔区段计轴预复位功能', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '110', tip: '鼠标右键菜单选择【道岔区段计轴预复位】' }, @@ -558,11 +529,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0308', + operateType: 'Switch_Cut_Off', skinCode: '02', trainingName: '区段切除({7})', trainingRemark: '区段切除', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '111', tip: '鼠标右键菜单选择【区段切除】' }, @@ -572,11 +543,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0309', + operateType: 'Switch_Active', skinCode: '02', trainingName: '区段激活({7})', trainingRemark: '区段激活功能', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '112', tip: '鼠标右键菜单选择【区段激活】' }, @@ -586,11 +557,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0310', + operateType: 'Switch_Set_Limit_Speed', skinCode: '02', trainingName: '道岔区段设置限速({7})', trainingRemark: '道岔区段设置限速功能(限速值:5)', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '113', tip: '鼠标右键菜单选择【道岔区段设置限速】' }, @@ -605,11 +576,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0311', + operateType: 'Switch_Cancel_Limit_Speed', skinCode: '02', trainingName: '道岔区段取消限速({7})', trainingRemark: '道岔区段取消限速功能', - trainingType: '03', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ { deviceType: '02', orderNum: 1, operateCode: '114', tip: '鼠标右键菜单选择【道岔区段取消限速】' }, @@ -624,11 +595,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0201', + operateType: 'Signal_Set_Route', skinCode: '02', trainingName: '进路选排({3})', trainingRemark: '选择排列进路', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01', '02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '301', tip: '鼠标右键菜单选择【进路选排】' }, @@ -640,11 +611,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0202', + operateType: 'Signal_Cancel_Route', skinCode: '02', trainingName: '进路取消({3})', trainingRemark: '进路取消', - trainingType: '02', + trainingType: 'Signal', productTypes: ['02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '303', tip: '鼠标右键菜单选择【进路取消】' }, @@ -655,11 +626,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0202', + operateType: 'Signal_Cancel_Route', skinCode: '02', trainingName: '进路取消({3})', trainingRemark: '进路取消', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '303', tip: '鼠标右键菜单选择【进路取消】' }, @@ -669,11 +640,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0203', + operateType: 'Signal_Block', skinCode: '02', trainingName: '信号封闭({5})', trainingRemark: '信号封闭', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01', '02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '306', tip: '鼠标右键菜单选择【信号封闭】' }, @@ -683,11 +654,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0204', + operateType: 'Signal_Unblock', skinCode: '02', trainingName: '信号解封({5})', trainingRemark: '信号解封', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01', '02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '307', tip: '鼠标右键菜单选择【信号解封】' }, @@ -701,11 +672,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0205', + operateType: 'Signal_Close_Signal', skinCode: '02', trainingName: '信号关灯({3})', trainingRemark: '信号关灯', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01', '02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '313', tip: '鼠标右键菜单选择【信号关灯】' }, @@ -716,11 +687,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0206', + operateType: 'Signal_Reopen_Signal', skinCode: '02', trainingName: '信号重开({3})', trainingRemark: '信号重开', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01', '02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '304', tip: '鼠标右键菜单选择【信号重开】' }, @@ -731,11 +702,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0207', + operateType: 'Signal_Set_Guide', skinCode: '02', trainingName: '引导进路办理({3})', trainingRemark: '进路办理信号引导', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '308', tip: '鼠标右键菜单选择【引导进路办理】' }, @@ -748,11 +719,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0208', + operateType: 'Signal_Open_Auto_Setting', skinCode: '02', trainingName: '自排开({5})', trainingRemark: '自排开', - trainingType: '02', + trainingType: 'Signal', productTypes: ['02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '315', tip: '鼠标右键菜单选择【自排开】' }, @@ -763,11 +734,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0209', + operateType: 'Signal_Close_Auto_Setting', skinCode: '02', trainingName: '自排关({5})', trainingRemark: '自排关', - trainingType: '02', + trainingType: 'Signal', productTypes: ['02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '314', tip: '鼠标右键菜单选择【自排关】' }, @@ -778,11 +749,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0210', + operateType: 'Signal_Find_Routes_Status', skinCode: '02', trainingName: '查询进路控制状态({5})', trainingRemark: '查询进路控制状态', - trainingType: '02', + trainingType: 'Signal', productTypes: ['02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '316', tip: '鼠标右键菜单选择【查询进路控制模式】' }, @@ -792,11 +763,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0211', + operateType: 'Signal_Set_CI_Auto', skinCode: '02', trainingName: '设置联锁自动进路({5})', trainingRemark: '设置联锁自动进路', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '309', tip: '鼠标右键菜单选择【设置联锁自动进路】' }, @@ -806,11 +777,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0212', + operateType: 'Signal_Cancel_CI_Auto', skinCode: '02', trainingName: '取消联锁自动进路({5})', trainingRemark: '取消联锁自动进路', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '310', tip: '鼠标右键菜单选择【取消联锁自动进路】' }, @@ -820,11 +791,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0213', + operateType: 'Signal_Set_CI_Auto_Trigger', skinCode: '02', trainingName: '设置联锁自动触发({5})', trainingRemark: '设置联锁自动触发', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '311', tip: '鼠标右键菜单选择【设置联锁自动触发】' }, @@ -834,11 +805,11 @@ export default { { maxDuration: 15, minDuration: 8, - operateType: '0214', + operateType: 'Signal_Cancel_CI_Auto_Trigger', skinCode: '02', trainingName: '取消联锁自动触发({5})', trainingRemark: '取消联锁自动触发', - trainingType: '02', + trainingType: 'Signal', productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '312', tip: '鼠标右键菜单选择【取消联锁自动触发】' }, diff --git a/src/jmapNew/theme/xian_01/operationConfigGlobal.js b/src/jmapNew/theme/xian_01/operationConfigGlobal.js deleted file mode 100644 index e99041826..000000000 --- a/src/jmapNew/theme/xian_01/operationConfigGlobal.js +++ /dev/null @@ -1,820 +0,0 @@ -export default { - list: [ - { - maxDuration: 20, - minDuration: 15, - operateType: '0103', - skinCode: '05', - trainingName: 'Switch to central control ({1})', - trainingRemark: 'Control permission conversion, switch station control to central control', - trainingType: '01', - productTypes: ['02'], - stepVOList: [ - { deviceType: 'bar', orderNum: 1, operateCode: '0024', tip: 'Left click the menu bar [control mode conversion]on the top' }, - { deviceType: 'bar', orderNum: 2, operateCode: '2041', tip: 'Left click [switch to central control] ' }, - { deviceType: '05', orderNum: 3, operateCode: '2042', tip: 'Left click to select the control area to be converted【{1}】', val: '{2}' }, - { deviceType: '05', orderNum: 4, operateCode: '204', tip: 'Left click [request to central control] ', val: '{2}' }, - { deviceType: '05', orderNum: 5, operateCode: '2043', tip: 'Left click [confirm]', val: '{2}' }, - { deviceType: '05', orderNum: 6, operateCode: '0013', tip: 'Left click [confirm]' }, - { deviceType: 'bar', orderNum: 7, operateCode: '000', tip: 'Left click [close] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0101', - skinCode: '05', - trainingName: 'Switch to station control ({1})', - trainingRemark: 'Control permission conversion, Force to station control', - trainingType: '01', - productTypes: ['01'], - stepVOList: [ - { deviceType: 'bar', orderNum: 1, operateCode: '0024', tip: 'Left click the menu bar [control mode conversion]on the top' }, - { deviceType: 'bar', orderNum: 2, operateCode: '2021', tip: 'Left click [switch to station control' }, - { deviceType: '05', orderNum: 3, operateCode: '2022', tip: 'Left click to select the control area to be converted【{1}】', val: '{2}' }, - { deviceType: '05', orderNum: 4, operateCode: '202', tip: 'Left click [request to station control', val: '{2}' }, - { deviceType: '05', orderNum: 5, operateCode: '2023', tip: 'Left click [confirm] ', val: '{2}' }, - { deviceType: '05', orderNum: 6, operateCode: '0013', tip: 'Left click [confirm] ' }, - { deviceType: 'bar', orderNum: 7, operateCode: '000', tip: 'Left click [close] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0102', - skinCode: '05', - trainingName: 'Force to station control ({1})', - trainingRemark: 'Control permission conversion,Force to station control', - trainingType: '01', - productTypes: ['01'], - stepVOList: [ - { deviceType: 'bar', orderNum: 1, operateCode: '0024', tip: 'Left click the menu bar [control mode conversion]on the top' }, - { deviceType: 'bar', orderNum: 2, operateCode: '2034', tip: 'Left click[Force to station control]' }, - { deviceType: 'bar', orderNum: 3, operateCode: '2035', tip: 'Left click to input the password [123456],then left click the [confirm]' }, - { deviceType: '05', orderNum: 4, operateCode: '2032', tip: 'Left click to select the control area to be converted【{1}】', val: '{2}' }, - { deviceType: '05', orderNum: 5, operateCode: '203', tip: 'Left click [Foece to station control', val: '{2}' }, - { deviceType: '05', orderNum: 6, operateCode: '2033', tip: 'Left click [confirm] ', val: '{2}' }, - { deviceType: '05', orderNum: 7, operateCode: '0013', tip: 'Left click [confirm] ' }, - { deviceType: 'bar', orderNum: 8, operateCode: '000', tip: 'Left click [close] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0501', - skinCode: '05', - trainingName: 'Detain Train({10}-{12}station)', - trainingRemark: 'Set the detaining function', - trainingType: '05', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '504', tip: 'Right click to select [Detain Train]' }, - { deviceType: '06', orderNum: 2, operateCode: '504', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0502', - skinCode: '05', - trainingName: 'Cancel Detaining({10}-{12}The platform)', - trainingRemark: 'Set cancelling detaining function', - trainingType: '05', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '505', tip: 'Right click to select [Cancel Detaining]]' }, - { deviceType: '06', orderNum: 2, operateCode: '505', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0503', - skinCode: '05', - trainingName: 'Force Canceling Detaining({10}-{12}The platform)', - trainingRemark: 'Force to cancel train detaining function', - trainingType: '05', - productTypes: ['01'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '506', tip: 'Right click to select [Force Canceling Detaining]' }, - { deviceType: '06', orderNum: 2, operateCode: '506', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0504', - skinCode: '05', - trainingName: 'Cancel train detaining along the whole line({10}-{12}The platform)', - trainingRemark: 'Cancel train detaining along the whole line (default the whole uplink and downlink )', - trainingType: '05', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '508', tip: 'Right click to select [Cancel train detaining along the whole line]' }, - { deviceType: '06', orderNum: 2, operateCode: '508', tip: 'Left click [confirm] ', val: '{11}' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0504', - skinCode: '05', - trainingName: 'Cancel train detaining along the whole line({10}-{12}The platform)', - trainingRemark: 'Cancel train detaining along the whole line (select the uplink or downlink ))', - trainingType: '05', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '508', tip: 'Right click to select [Cancel train detaining along the whole line]' }, - { deviceType: '06', orderNum: 2, operateCode: '5081', tip: 'Right click to select[{14}the whole line', val: '{13}' }, - { deviceType: '06', orderNum: 3, operateCode: '508', tip: 'Left click [confirm]', val: '{13}' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0505', - skinCode: '05', - trainingName: 'Skip this station to continue moving({10}-{12}The platform)', - trainingRemark: 'Set the skip to continue moving function', - trainingType: '05', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '502', tip: 'Right click to select [Skip this station to continue moving]' }, - { deviceType: '06', orderNum: 2, operateCode: '502', tip: 'Left click [confirm]', val: '{11}' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0506', - skinCode: '05', - trainingName: 'Cancel skiping({10}-{12}The platform)', - trainingRemark: 'Set cancelling skiping function', - trainingType: '05', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '503', tip: 'Right click to select [Cancel skiping]' }, - { deviceType: '06', orderNum: 2, operateCode: '503', tip: 'Left click [confirm]', val: '{11}' } - ] - }, - { - maxDuration: 8, - minDuration: 5, - operateType: '0507', - skinCode: '05', - trainingName: 'Query Platform status({10}-{12}The platform)', - trainingRemark: 'Query platform status function', - trainingType: '05', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '507', tip: 'Right click to select [Query Platform status]' }, - { deviceType: '06', orderNum: 2, operateCode: '0012', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0508', - skinCode: '05', - trainingName: 'Set the stop time({10}-{12}The platform)', - trainingRemark: 'Set the stop time (auto, permanent validity)', - trainingType: '05', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '509', tip: 'Right click to select [Set the stop time]' }, - { deviceType: '06', orderNum: 2, operateCode: '5092', tip: 'Left click to select [auto]', val: '01' }, - { deviceType: '06', orderNum: 3, operateCode: '509', tip: 'Left click [confirm] ', val: '01::20::true' }, - { deviceType: '06', orderNum: 4, operateCode: '5091', tip: 'Left click [confirm] ', val: '01::20::true' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0508', - skinCode: '05', - trainingName: 'Set the stop time({10}-{12}The platform)', - trainingRemark: 'Set the stop time (manual, 20 seconds, permanent validity)', - trainingType: '05', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '509', tip: 'Right click to select [Set the stop time]' }, - { deviceType: '06', orderNum: 2, operateCode: '5092', tip: 'Left click to select [manual]', val: '02' }, - { deviceType: '06', orderNum: 3, operateCode: '5094', tip: 'Set time [20]', val: '20' }, - { deviceType: '06', orderNum: 4, operateCode: '509', tip: 'Left click [confirm] ', val: '02::20::true' }, - { deviceType: '06', orderNum: 5, operateCode: '5091', tip: 'Left click [confirm]', val: '02::20::true' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0508', - skinCode: '05', - trainingName: 'Set the stop time({10}-{12}The platform)', - trainingRemark: 'Set the stop time (manual, 20 seconds, once valid )', - trainingType: '05', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '509', tip: 'Right click to select [Set the stop time]' }, - { deviceType: '06', orderNum: 2, operateCode: '5092', tip: 'Left click to select [manual]', val: '02' }, - { deviceType: '06', orderNum: 3, operateCode: '5094', tip: 'Set time [20]', val: '20' }, - { deviceType: '06', orderNum: 4, operateCode: '5093', tip: 'Left click to select "once valid ".', val: 'false' }, - { deviceType: '06', orderNum: 5, operateCode: '509', tip: 'Left click [confirm] ', val: '02::20::false' }, - { deviceType: '06', orderNum: 6, operateCode: '5091', tip: 'Left click [confirm] ', val: '02::20::false' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0509', - skinCode: '05', - trainingName: 'Set Operation speed Level({10}-{12}The platform)', - trainingRemark: 'Set Operation speed Level(set the interval running time to 60, permanent validity)', - trainingType: '05', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '510', tip: 'Right click to select [Set Operation speed Level]' }, - { deviceType: '06', orderNum: 2, operateCode: '5101', tip: 'Left click to select [60]', val: '60' }, - { deviceType: '06', orderNum: 3, operateCode: '510', tip: 'Left click [confirm] ', val: '60::true' }, - { deviceType: '06', orderNum: 4, operateCode: '5102', tip: 'Left click [confirm] ', val: '60::true' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0509', - skinCode: '05', - trainingName: 'Set Operation speed Level({10}-{12}The platform)', - trainingRemark: 'Set Operation speed Level (set the interval running time to 60, once valid )', - trainingType: '05', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '510', tip: 'Right click to select [Set Operation speed Level]' }, - { deviceType: '06', orderNum: 2, operateCode: '5101', tip: 'Left click to select [60]', val: '60' }, - { deviceType: '06', orderNum: 3, operateCode: '5103', tip: 'Left click to cancel [permanent validity].', val: 'false' }, - { deviceType: '06', orderNum: 4, operateCode: '510', tip: 'Left click [confirm] ', val: '60::false' }, - { deviceType: '06', orderNum: 5, operateCode: '5102', tip: 'Left click [confirm] ', val: '60::false' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0510', - skinCode: '05', - trainingName: 'Set departure in advance({10}-{12}The platform)', - trainingRemark: 'Set departure inadvance function', - trainingType: '05', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '501', tip: 'Right click to select [Set departure in advance]' }, - { deviceType: '06', orderNum: 2, operateCode: '501', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0511', - skinCode: '05', - trainingName: 'Manual return strategy setting({10}-{12}The platform)', - trainingRemark: 'Manual return strategy setting function', - trainingType: '05', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '511', tip: 'Right click to select [Manual return strategy setting]' }, - { deviceType: '06', orderNum: 2, operateCode: '5111', tip: 'Left click to select [No return]".', val: '01' }, - { deviceType: '06', orderNum: 3, operateCode: '511', tip: 'Left click [confirm] ', val: '01' } - ] - }, - - { - maxDuration: 15, - minDuration: 8, - operateType: '0401', - skinCode: '05', - trainingName: 'Section fault unlocking({8}{9})', - trainingRemark: 'Fault unlocking', - trainingType: '04', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '402', tip: 'Right click to select [Section fault unlocking]' }, - { deviceType: '03', orderNum: 2, operateCode: '4026', tip: 'Left click [Execute] ' }, - { deviceType: '03', orderNum: 3, operateCode: '4024', tip: 'Left click [ok 1] ' }, - { deviceType: '03', orderNum: 4, operateCode: '4025', tip: 'Left click [ok 2] ' }, - { deviceType: '03', orderNum: 5, operateCode: '001', tip: 'Left click [close] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0402', - skinCode: '05', - trainingName: 'Section resection({8}{9})', - trainingRemark: 'Section resection', - trainingType: '04', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '405', tip: 'Right click to select [Section resection]' }, - { deviceType: '03', orderNum: 2, operateCode: '405', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0403', - skinCode: '05', - trainingName: 'Section activation({8}{9})', - trainingRemark: 'Section activation function', - trainingType: '04', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '406', tip: 'Right click to select [Section activation]' }, - { deviceType: '03', orderNum: 2, operateCode: '406', tip: 'Left click [confirm]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0404', - skinCode: '05', - trainingName: 'Axis pre-reset({8}{9})', - trainingRemark: 'Axis pre-reset function', - trainingType: '04', - productTypes: ['01'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '409', tip: 'Right click to select [Axis pre-reset]' }, - { deviceType: '03', orderNum: 2, operateCode: '4091', tip: 'Left click [Execute]' }, - { deviceType: '03', orderNum: 3, operateCode: '4093', tip: 'Left click [confirm1]' }, - { deviceType: '03', orderNum: 4, operateCode: '4094', tip: 'Left click [confirm2]' }, - { deviceType: '03', orderNum: 5, operateCode: '001', tip: 'Left click [close]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0405', - skinCode: '05', - trainingName: 'Section blockade({8}{9})', - trainingRemark: 'Section blockade function', - trainingType: '04', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '403', tip: 'Right click to select [Section blockade]' }, - { deviceType: '03', orderNum: 2, operateCode: '403', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0406', - skinCode: '05', - trainingName: 'Section unblockade({8}{9})', - trainingRemark: 'Section unblockade function', - trainingType: '04', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '404', tip: 'Right click to select [Section unblockade]' }, - { deviceType: '03', orderNum: 2, operateCode: '4041', tip: 'Left click [Execute]' }, - { deviceType: '03', orderNum: 3, operateCode: '4043', tip: 'Left click [confirm1]' }, - { deviceType: '03', orderNum: 4, operateCode: '4044', tip: 'Left click [confirm2]' }, - { deviceType: '03', orderNum: 5, operateCode: '001', tip: 'Left click [close]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0407', - skinCode: '05', - trainingName: 'Set speed limit on the section({8}{9})', - trainingRemark: 'Set speed limit on the section (speed limit value: 5)', - trainingType: '04', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '407', tip: 'Right click to select [Set speed limit on the section]' }, - { deviceType: '03', orderNum: 2, operateCode: '4076', tip: 'Left click to select [speed limit 5] ', val: '5' }, - { deviceType: '03', orderNum: 3, operateCode: '4071', tip: 'Left click [Execute]' }, - { deviceType: '03', orderNum: 4, operateCode: '4072', tip: 'Left click [confirm]' }, - { deviceType: '03', orderNum: 5, operateCode: '4073', tip: 'Left click [confirm1]' }, - { deviceType: '03', orderNum: 6, operateCode: '4074', tip: 'Left click [confirm2]', val: '5' }, - { deviceType: '03', orderNum: 7, operateCode: '001', tip: 'Left click [close]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0408', - skinCode: '05', - trainingName: 'Cancel speed limit on the section({8}{9})', - trainingRemark: 'Cancel speed limit on the section', - trainingType: '04', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '408', tip: 'Right click to select [Cancel speed limit on the section]' }, - { deviceType: '03', orderNum: 2, operateCode: '4081', tip: 'Left click [Execute]' }, - { deviceType: '03', orderNum: 3, operateCode: '4082', tip: 'Left click [confirm] ' }, - { deviceType: '03', orderNum: 4, operateCode: '4083', tip: 'Left click [confirm1]' }, - { deviceType: '03', orderNum: 5, operateCode: '4084', tip: 'Left click [confirm2]', val: '5' }, - { deviceType: '03', orderNum: 6, operateCode: '001', tip: 'Left click [close]' } - ] - }, - - { - maxDuration: 15, - minDuration: 8, - operateType: '0301', - skinCode: '05', - trainingName: 'Single lock of turnout({7})', - trainingRemark: 'Single lock of turnout', - trainingType: '03', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '103', tip: 'Right click to select [Single lock of turnout]' }, - { deviceType: '02', orderNum: 2, operateCode: '103', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0302', - skinCode: '05', - trainingName: 'Single release of turnout({7})', - trainingRemark: 'Single release of turnout', - trainingType: '03', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '104', tip: 'Right click to select [Single release of turnout]' }, - { deviceType: '02', orderNum: 2, operateCode: '1041', tip: 'Left click [Execute]' }, - { deviceType: '02', orderNum: 3, operateCode: '1043', tip: 'Left click [confirm1] ' }, - { deviceType: '02', orderNum: 4, operateCode: '1044', tip: 'Left click [confirm2] ' }, - { deviceType: '02', orderNum: 5, operateCode: '001', tip: 'Left click [close] '} - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0303', - skinCode: '05', - trainingName: 'Turnout section closure({7})', - trainingRemark: 'Turnout section closure ', - trainingType: '03', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '105', tip: 'Right click to select [Turnout section closure]' }, - { deviceType: '02', orderNum: 2, operateCode: '105', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0304', - skinCode: '05', - trainingName: 'Turnout section unsealing({7})', - trainingRemark: 'Turnout section unsealing function', - trainingType: '03', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '106', tip: 'Right click to select [Turnout section unsealing]' }, - { deviceType: '02', orderNum: 2, operateCode: '1061', tip: 'Left click [Execute]' }, - { deviceType: '02', orderNum: 3, operateCode: '1063', tip: 'Left click [confirm1]' }, - { deviceType: '02', orderNum: 4, operateCode: '1064', tip: 'Left click [confirm2]' }, - { deviceType: '02', orderNum: 5, operateCode: '001', tip: 'Left click [close]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0305', - skinCode: '05', - trainingName: 'Turnout rotation({7})', - trainingRemark: 'Turnout rotation({15}turn{16})', - trainingType: '03', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '107', tip: 'Right click to select [Turnout rotation]' }, - { deviceType: '02', orderNum: 2, operateCode: '107', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 20, - minDuration: 10, - operateType: '0306', - skinCode: '05', - trainingName: 'Turnout section fault unlocking({7})', - trainingRemark: 'Turnout section fault unlocking function', - trainingType: '03', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '109', tip: 'Right click to select [Turnout section fault unlocking]' }, - { deviceType: '02', orderNum: 2, operateCode: '1091', tip: 'Left click [Execute]' }, - { deviceType: '02', orderNum: 3, operateCode: '1093', tip: 'Left click [confirm1]' }, - { deviceType: '02', orderNum: 4, operateCode: '1094', tip: 'Left click [confirm2]' }, - { deviceType: '02', orderNum: 5, operateCode: '001', tip: 'Left click [close]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0307', - skinCode: '05', - trainingName: 'Turnout section axile pre reset({7})', - trainingRemark: 'Turnout section axile pre reset function', - trainingType: '03', - productTypes: ['01'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '110', tip: 'Right click to select [Turnout section axile pre reset]' }, - { deviceType: '02', orderNum: 2, operateCode: '1101', tip: 'Left click [Execute]' }, - { deviceType: '02', orderNum: 3, operateCode: '1103', tip: 'Left click [confirm1]' }, - { deviceType: '02', orderNum: 4, operateCode: '1104', tip: 'Left click [confirm2]' }, - { deviceType: '02', orderNum: 5, operateCode: '001', tip: 'Left click [close]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0308', - skinCode: '05', - trainingName: 'Section resection({7})', - trainingRemark: 'Section resection', - trainingType: '03', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '111', tip: 'Right click to select [Section resection]' }, - { deviceType: '02', orderNum: 2, operateCode: '111', tip: 'Left click [confirm]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0309', - skinCode: '05', - trainingName: 'Section activation({7})', - trainingRemark: 'Section activation function', - trainingType: '03', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '112', tip: 'Right click to select [Section activation]' }, - { deviceType: '02', orderNum: 2, operateCode: '112', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0310', - skinCode: '05', - trainingName: 'Set speed limit on the turnout section({7})', - trainingRemark: 'Set speed limit on the section (speed limit value: 5)', - trainingType: '03', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '113', tip: 'Right click to select [Set speed limit on the turnout section]' }, - { deviceType: '02', orderNum: 2, operateCode: '1136', tip: 'Left click to select [speed limit 5] ', val: '5' }, - { deviceType: '02', orderNum: 3, operateCode: '1131', tip: 'Left click [Execute]' }, - { deviceType: '02', orderNum: 4, operateCode: '1132', tip: 'Left click [confirm]' }, - { deviceType: '02', orderNum: 5, operateCode: '1133', tip: 'Left click [confirm1]' }, - { deviceType: '02', orderNum: 6, operateCode: '1134', tip: 'Left click [confirm2]', val: '5' }, - { deviceType: '02', orderNum: 7, operateCode: '001', tip: 'Left click [close]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0311', - skinCode: '05', - trainingName: 'Cancel speed limit on the turnout section({7})', - trainingRemark: 'Cancel speed limit on the turnout section', - trainingType: '03', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '114', tip: 'Right click to select [Cancel speed limit on the turnout section]' }, - { deviceType: '02', orderNum: 2, operateCode: '1141', tip: 'Left click [Execute]' }, - { deviceType: '02', orderNum: 3, operateCode: '1142', tip: 'Left click [confirm] ' }, - { deviceType: '02', orderNum: 4, operateCode: '1143', tip: 'Left click [confirm1]' }, - { deviceType: '02', orderNum: 5, operateCode: '1144', tip: 'Left click [confirm2]', val: '5' }, - { deviceType: '02', orderNum: 6, operateCode: '001', tip: 'Left click [close]' } - ] - }, - - { - maxDuration: 15, - minDuration: 8, - operateType: '0201', - skinCode: '05', - trainingName: 'Route selection({3})', - trainingRemark: 'Route selection', - trainingType: '02', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '301', tip: 'Right click to select [Route selection]' }, - { deviceType: '04', orderNum: 2, operateCode: '3011', tip: 'Left click to select the route name【{3}】', val: '{4}' }, - { deviceType: '04', orderNum: 3, operateCode: '301', tip: 'Left click [confirm] ' }, - { deviceType: '04', orderNum: 4, operateCode: '3012', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0202', - skinCode: '05', - trainingName: 'Cancel the route({3})', - trainingRemark: 'Cancel the route', - trainingType: '02', - productTypes: ['02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '303', tip: 'Right click to select [Cancel the route]' }, - { deviceType: '04', orderNum: 2, operateCode: '303', tip: 'Left click [confirm] ' }, - { deviceType: '04', orderNum: 3, operateCode: '3031', tip: 'Left click [confirm]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0202', - skinCode: '05', - trainingName: 'Cancel the route({3})', - trainingRemark: 'Cancel the route', - trainingType: '02', - productTypes: ['01'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '303', tip: 'Right click to select [Cancel the route]' }, - { deviceType: '04', orderNum: 2, operateCode: '303', tip: 'Left click [confirm]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0203', - skinCode: '05', - trainingName: 'Signal closure({5})', - trainingRemark: 'Signal closure', - trainingType: '02', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '306', tip: 'Right click to select [Signal closure]' }, - { deviceType: '04', orderNum: 2, operateCode: '306', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0204', - skinCode: '05', - trainingName: 'Signal unsealing({5})', - trainingRemark: 'Signal unsealing', - trainingType: '02', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '307', tip: 'Right click to select [Signal unsealing]' }, - { deviceType: '04', orderNum: 2, operateCode: '3071', tip: 'Left click [Execute]' }, - { deviceType: '04', orderNum: 3, operateCode: '3072', tip: 'Left click [confirm]' }, - { deviceType: '04', orderNum: 4, operateCode: '3073', tip: 'Left click [confirm1]' }, - { deviceType: '04', orderNum: 5, operateCode: '3074', tip: 'Left click [confirm2]' }, - { deviceType: '04', orderNum: 6, operateCode: '001', tip: 'Left click [close]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0205', - skinCode: '05', - trainingName: 'Signal Off({3})', - trainingRemark: 'Signal Off', - trainingType: '02', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '313', tip: 'Right click to select [Signal Off]' }, - { deviceType: '04', orderNum: 2, operateCode: '313', tip: 'Left click [confirm]' }, - { deviceType: '04', orderNum: 3, operateCode: '3131', tip: 'Left click [confirm]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0206', - skinCode: '05', - trainingName: 'Signal reopen({3})', - trainingRemark: 'Signal reopen', - trainingType: '02', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '304', tip: 'Right click to select [Signal reopen]' }, - { deviceType: '04', orderNum: 2, operateCode: '304', tip: 'Left click [confirm]' }, - { deviceType: '04', orderNum: 3, operateCode: '3041', tip: 'Left click [confirm]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0207', - skinCode: '05', - trainingName: 'Guide route handling({3})', - trainingRemark: 'Guide route handling', - trainingType: '02', - productTypes: ['01'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '308', tip: 'Right click to select [Guide route handling]' }, - { deviceType: '04', orderNum: 2, operateCode: '3081', tip: 'Left click [Execute]' }, - { deviceType: '04', orderNum: 3, operateCode: '3083', tip: 'Left click [confirm1]' }, - { deviceType: '04', orderNum: 4, operateCode: '3084', tip: 'Left click [confirm2]' }, - { deviceType: '04', orderNum: 5, operateCode: '001', tip: 'Left click [close]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0208', - skinCode: '05', - trainingName: 'Start automatic routing({5})', - trainingRemark: 'Start automatic routing', - trainingType: '02', - productTypes: ['02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '315', tip: 'Right click to select [Start automatic routing]' }, - { deviceType: '04', orderNum: 2, operateCode: '3151', tip: 'Left click to select the route based on the manual control state', val: '{6}' }, - { deviceType: '04', orderNum: 3, operateCode: '315', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0209', - skinCode: '05', - trainingName: 'Close automatic routing({5})', - trainingRemark: 'Close automatic routing', - trainingType: '02', - productTypes: ['02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '314', tip: 'Right click to select [Close automatic routing]' }, - { deviceType: '04', orderNum: 2, operateCode: '3141', tip: 'Left click to select the first route', val: '{6}' }, - { deviceType: '04', orderNum: 3, operateCode: '314', tip: 'Left click [confirm]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0210', - skinCode: '05', - trainingName: 'Route control status query({5})', - trainingRemark: 'Query the route control status ', - trainingType: '02', - productTypes: ['02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '316', tip: 'Right click to select [Route control status query]' }, - { deviceType: '04', orderNum: 2, operateCode: '316', tip: 'Left click [confirm] ' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0211', - skinCode: '05', - trainingName: 'Set Interlock for Auto Routing({5})', - trainingRemark: 'Set Interlock for Auto Routing', - trainingType: '02', - productTypes: ['01'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '309', tip: 'Right click to select [Set Interlock for Auto Routing]' }, - { deviceType: '04', orderNum: 2, operateCode: '309', tip: 'Left click [confirm]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0212', - skinCode: '05', - trainingName: 'Cancel Interlock setting for Auto Routing({5})', - trainingRemark: 'Cancel Interlock setting for Auto Routing', - trainingType: '02', - productTypes: ['01'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '310', tip: 'Right click to select [Cancel Interlock setting for Auto Routing]' }, - { deviceType: '04', orderNum: 2, operateCode: '310', tip: 'Left click [confirm]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0213', - skinCode: '05', - trainingName: 'Set Interlock for Auto Trigger({5})', - trainingRemark: 'Set Interlock for Auto Trigger', - trainingType: '02', - productTypes: ['01'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '311', tip: 'Right click to select [Set Interlock for Auto Trigger]' }, - { deviceType: '04', orderNum: 2, operateCode: '311', tip: 'Left click [confirm]' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: '0214', - skinCode: '05', - trainingName: 'Cancel Interlock setting for Auto Trigger({5})', - trainingRemark: 'Cancel Interlock setting for Auto Trigger', - trainingType: '02', - productTypes: ['01'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '312', tip: 'Right click to select[Cancel Interlock setting for Auto Trigger]' }, - { deviceType: '04', orderNum: 2, operateCode: '312', tip: 'Left click [confirm]' } - ] - } - ] -}; diff --git a/src/scripts/cmdPlugin/ValidateHandler.js b/src/scripts/cmdPlugin/ValidateHandler.js index 6e31fd9bb..677a96f61 100644 --- a/src/scripts/cmdPlugin/ValidateHandler.js +++ b/src/scripts/cmdPlugin/ValidateHandler.js @@ -60,6 +60,7 @@ class ValidateHandler { } } else if (operate.over) { // 最后一步校验 const standard = steps[order]; + console.log(operate, standard, operate.code == standard.code, operate.operation == standard.operation, operate.val == standard.val); if (operate && standard && operate.operation == standard.operation && operate.code == standard.code && @@ -68,6 +69,7 @@ class ValidateHandler { } } else if (order < steps.length) { // 普通步骤信息校验 const standard = steps[order]; + console.log(operate, standard, operate.code == standard.code, operate.operation == standard.operation, operate.val == standard.val); if (operate && standard && operate.code == standard.code && operate.operation == standard.operation && From acd3b0f87e687a8c3bf1a4bbc3619f469e3cc6d8 Mon Sep 17 00:00:00 2001 From: joylink_cuiweidong <364937672@qq.com> Date: Thu, 18 Jun 2020 11:24:42 +0800 Subject: [PATCH 2/6] =?UTF-8?q?=E4=BF=A1=E5=8F=B7=E6=9C=BA=E8=BF=9B?= =?UTF-8?q?=E8=B7=AF=E4=BB=A3=E7=A0=81=E6=95=B4=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/menus/dialog/routeDetail.vue | 2 +- .../menus/dialog/routeHandControl.vue | 2 +- .../components/menus/dialog/standControl.vue | 2 +- .../menus/dialog/standJumpStopControl.vue | 2 +- .../components/menus/dialog/standRunLevel.vue | 2 +- .../components/menus/dialog/standStopTime.vue | 2 +- .../xian_01/menus/dialog/routeDetail.vue | 164 --------- .../xian_01/menus/dialog/routeHandControl.vue | 335 ------------------ .../theme/xian_01/menus/menuSignal.vue | 13 +- 9 files changed, 13 insertions(+), 511 deletions(-) delete mode 100644 src/jmapNew/theme/xian_01/menus/dialog/routeDetail.vue delete mode 100644 src/jmapNew/theme/xian_01/menus/dialog/routeHandControl.vue diff --git a/src/jmapNew/theme/components/menus/dialog/routeDetail.vue b/src/jmapNew/theme/components/menus/dialog/routeDetail.vue index aa020aa89..2e4108377 100644 --- a/src/jmapNew/theme/components/menus/dialog/routeDetail.vue +++ b/src/jmapNew/theme/components/menus/dialog/routeDetail.vue @@ -54,7 +54,7 @@ 取 消 - + diff --git a/src/jmapNew/theme/components/menus/dialog/routeHandControl.vue b/src/jmapNew/theme/components/menus/dialog/routeHandControl.vue index 3182be0fd..c825d535b 100644 --- a/src/jmapNew/theme/components/menus/dialog/routeHandControl.vue +++ b/src/jmapNew/theme/components/menus/dialog/routeHandControl.vue @@ -69,7 +69,7 @@ 取 消 - + diff --git a/src/jmapNew/theme/components/menus/dialog/standControl.vue b/src/jmapNew/theme/components/menus/dialog/standControl.vue index d716db370..dfe881a9f 100644 --- a/src/jmapNew/theme/components/menus/dialog/standControl.vue +++ b/src/jmapNew/theme/components/menus/dialog/standControl.vue @@ -121,7 +121,7 @@ 取 消 - + diff --git a/src/jmapNew/theme/components/menus/dialog/standJumpStopControl.vue b/src/jmapNew/theme/components/menus/dialog/standJumpStopControl.vue index 89c71a521..9bb46f82e 100644 --- a/src/jmapNew/theme/components/menus/dialog/standJumpStopControl.vue +++ b/src/jmapNew/theme/components/menus/dialog/standJumpStopControl.vue @@ -97,7 +97,7 @@ 取 消 - + diff --git a/src/jmapNew/theme/components/menus/dialog/standRunLevel.vue b/src/jmapNew/theme/components/menus/dialog/standRunLevel.vue index 026f382d4..6bfe49002 100644 --- a/src/jmapNew/theme/components/menus/dialog/standRunLevel.vue +++ b/src/jmapNew/theme/components/menus/dialog/standRunLevel.vue @@ -62,7 +62,7 @@ 取 消 - + diff --git a/src/jmapNew/theme/components/menus/dialog/standStopTime.vue b/src/jmapNew/theme/components/menus/dialog/standStopTime.vue index 09f470883..5d1e8e299 100644 --- a/src/jmapNew/theme/components/menus/dialog/standStopTime.vue +++ b/src/jmapNew/theme/components/menus/dialog/standStopTime.vue @@ -63,7 +63,7 @@ 取 消 - + diff --git a/src/jmapNew/theme/xian_01/menus/dialog/routeDetail.vue b/src/jmapNew/theme/xian_01/menus/dialog/routeDetail.vue deleted file mode 100644 index c74603b7b..000000000 --- a/src/jmapNew/theme/xian_01/menus/dialog/routeDetail.vue +++ /dev/null @@ -1,164 +0,0 @@ - - - diff --git a/src/jmapNew/theme/xian_01/menus/dialog/routeHandControl.vue b/src/jmapNew/theme/xian_01/menus/dialog/routeHandControl.vue deleted file mode 100644 index c9c74bd1b..000000000 --- a/src/jmapNew/theme/xian_01/menus/dialog/routeHandControl.vue +++ /dev/null @@ -1,335 +0,0 @@ - - - diff --git a/src/jmapNew/theme/xian_01/menus/menuSignal.vue b/src/jmapNew/theme/xian_01/menus/menuSignal.vue index 1c7da0c86..d13c54a5f 100644 --- a/src/jmapNew/theme/xian_01/menus/menuSignal.vue +++ b/src/jmapNew/theme/xian_01/menus/menuSignal.vue @@ -1,12 +1,12 @@ @@ -17,8 +17,8 @@ import RouteControl from '@/jmapNew/theme/components/menus/dialog/routeControl'; import RouteSelection from './dialog/routeSelection'; import RouteLock from './dialog/routeLock'; import RouteCmdControl from './dialog/routeCmdControl'; -import RouteHandControl from './dialog/routeHandControl'; -import RouteDetail from './dialog/routeDetail'; +import RouteHandControl from '@/jmapNew/theme/components/menus/dialog/routeHandControl'; +import RouteDetail from '@/jmapNew/theme/components/menus/dialog/routeDetail'; import NoticeInfo from './dialog/childDialog/childDialog/noticeInfo'; import CMD from '@/scripts/cmdPlugin/CommandEnum'; import MenuContextHandler from '@/scripts/cmdPlugin/MenuContextHandler'; @@ -49,6 +49,7 @@ export default { data() { return { menu: [], + systemName:'xian-01__systerm', menuNormal: { Local: [ { From 4c990697525b4d1d207247dc7bdfeff98703f039 Mon Sep 17 00:00:00 2001 From: joylink_cuiweidong <364937672@qq.com> Date: Thu, 18 Jun 2020 14:19:13 +0800 Subject: [PATCH 3/6] =?UTF-8?q?=E5=89=A7=E6=9C=AC=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/jmapNew/theme/haerbin_01/menus/dialog/routeLock.vue | 2 +- src/views/scriptManage/display/tipScriptRecordNew.vue | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/jmapNew/theme/haerbin_01/menus/dialog/routeLock.vue b/src/jmapNew/theme/haerbin_01/menus/dialog/routeLock.vue index 22f36f24c..9b1b803be 100644 --- a/src/jmapNew/theme/haerbin_01/menus/dialog/routeLock.vue +++ b/src/jmapNew/theme/haerbin_01/menus/dialog/routeLock.vue @@ -86,7 +86,7 @@ export default { return this.dialogShow ? OperationEvent.Signal.lock.menu.domId : ''; }, title() { - return this.$t('menu.blockSignalButton'); + return '封锁信号'; } }, mounted() { diff --git a/src/views/scriptManage/display/tipScriptRecordNew.vue b/src/views/scriptManage/display/tipScriptRecordNew.vue index f81c2984d..14afc5c83 100644 --- a/src/views/scriptManage/display/tipScriptRecordNew.vue +++ b/src/views/scriptManage/display/tipScriptRecordNew.vue @@ -89,6 +89,9 @@ export default { }, '$store.state.scriptRecord.simulationPause': function(val) { this.isPause = !(this.$store.state.scriptRecord.simulationPause); + }, + '$store.state.map.runPlanStatus':function (val) { + this.initData(); } }, beforeDestroy() { From 7b9fe40dbdd3a3c016069e70197f9178d359051b Mon Sep 17 00:00:00 2001 From: joylink_cuiweidong <364937672@qq.com> Date: Thu, 18 Jun 2020 14:36:23 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E5=89=A7=E6=9C=AC=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/scriptManage/display/tipScriptRecordNew.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/scriptManage/display/tipScriptRecordNew.vue b/src/views/scriptManage/display/tipScriptRecordNew.vue index 14afc5c83..4f07fbe55 100644 --- a/src/views/scriptManage/display/tipScriptRecordNew.vue +++ b/src/views/scriptManage/display/tipScriptRecordNew.vue @@ -91,6 +91,7 @@ export default { this.isPause = !(this.$store.state.scriptRecord.simulationPause); }, '$store.state.map.runPlanStatus':function (val) { + debugger; this.initData(); } }, @@ -105,6 +106,7 @@ export default { this.backDisabled = response.data.bgSet; this.mapLocation = response.data.mapLocation; this.$store.dispatch('scriptRecord/updateBgSet', response.data.bgSet); + if (response.data.bgSet) { this.$store.dispatch('map/setRunPlanStatus', true); } }); }, methods:{ @@ -242,6 +244,7 @@ export default { this.$refs['getAction'].loadInitData(); this.initData(); this.memberId = ''; + this.$store.dispatch('map/setRunPlanStatus', false); this.$store.dispatch('training/setPrdType', '01'); // this.initAutoSaveScript(); this.$store.dispatch('scriptRecord/updateBgSet', false); From 04b9f6062ad8b538d9d2eb5278d38e5217ca455f Mon Sep 17 00:00:00 2001 From: joylink_cuiweidong <364937672@qq.com> Date: Thu, 18 Jun 2020 14:38:33 +0800 Subject: [PATCH 5/6] =?UTF-8?q?=E5=8E=BB=E6=8E=89=E6=96=AD=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/scriptManage/display/tipScriptRecordNew.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/views/scriptManage/display/tipScriptRecordNew.vue b/src/views/scriptManage/display/tipScriptRecordNew.vue index 4f07fbe55..b889c4eeb 100644 --- a/src/views/scriptManage/display/tipScriptRecordNew.vue +++ b/src/views/scriptManage/display/tipScriptRecordNew.vue @@ -91,7 +91,6 @@ export default { this.isPause = !(this.$store.state.scriptRecord.simulationPause); }, '$store.state.map.runPlanStatus':function (val) { - debugger; this.initData(); } }, From 76eed898a50834a73c199f49b001e4d04ab4df8f Mon Sep 17 00:00:00 2001 From: fan <18706759286@163.com> Date: Thu, 18 Jun 2020 14:47:00 +0800 Subject: [PATCH 6/6] =?UTF-8?q?=E7=A6=8F=E5=B7=9E=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E5=AE=9A=E4=B9=89=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../menus/childDialog/confirmControl.vue | 4 +-- .../components/menus/dialog/routeControl.vue | 24 +++++++++----- .../childDialog/confirmControlSpeed.vue | 4 +-- .../menus/dialog/routeHandControl.vue | 4 +-- .../fuzhou_01/menus/dialog/routeSelection.vue | 7 +++- .../fuzhou_01/menus/dialog/sectionControl.vue | 1 - .../menus/dialog/speedCmdControl.vue | 1 + src/jmapNew/theme/fuzhou_01/menus/menuBar.vue | 26 +++++++-------- .../childDialog/twoConfirmation.vue | 8 ++++- .../menus/menuDialog/passwordBox.vue | 5 +-- .../menuDialog/stationControlConvert.vue | 1 - .../theme/fuzhou_01/menus/menuSection.vue | 1 - .../fuzhou_01/menus/passiveDialog/alarm.vue | 33 ++++++++++--------- .../fuzhou_01/menus/utils/menuOperate.js | 18 +++++++++- .../theme/fuzhou_01/operationConfig.js | 24 +++++++------- src/scripts/cmdPlugin/ValidateHandler.js | 23 +++++++++---- 16 files changed, 112 insertions(+), 72 deletions(-) diff --git a/src/jmapNew/theme/components/menus/childDialog/confirmControl.vue b/src/jmapNew/theme/components/menus/childDialog/confirmControl.vue index 8ac97a9bd..b09de6361 100644 --- a/src/jmapNew/theme/components/menus/childDialog/confirmControl.vue +++ b/src/jmapNew/theme/components/menus/childDialog/confirmControl.vue @@ -156,7 +156,7 @@ export default { signalClose() { const operate = { over: true, - operation: this.operation, + operation: OperationEvent.Signal.signalClose.confirm.operation, cmdType: CMD.Signal.CMD_SIGNAL_CLOSE_SIGNAL }; this.sendCommand(operate); @@ -185,7 +185,7 @@ export default { reopenSignal() { const operate = { over: true, - operation: this.operation, + operation: OperationEvent.Signal.reopenSignal.confirm.operation, cmdType: CMD.Signal.CMD_SIGNAL_REOPEN_SIGNAL }; diff --git a/src/jmapNew/theme/components/menus/dialog/routeControl.vue b/src/jmapNew/theme/components/menus/dialog/routeControl.vue index 8be050e37..e10ab37e2 100644 --- a/src/jmapNew/theme/components/menus/dialog/routeControl.vue +++ b/src/jmapNew/theme/components/menus/dialog/routeControl.vue @@ -183,16 +183,24 @@ export default { this.sendCommand(menuOperate.Signal.cancelTrainRoute); break; case 'fuzhou-01__systerm': - this.sendCommandNext(menuOperate.Signal.cancelTrainRoute).then(operate => { - operate['messages'] = [this.$t('tip.signalModeToManualModeTipPrefix') + this.signalName + this.$t('tip.signalModeToManualModeTipSuffix')]; - this.$refs.confirmControl.doShow(operate); - }); + if (this.$store.state.training.prdType === '01') { + this.sendCommand(menuOperate.Signal.cancelTrainRoute); + } else if (this.$store.state.training.prdType === '02') { + this.sendCommandNext(menuOperate.Signal.cancelTrainRoute).then(operate => { + operate['messages'] = [this.$t('tip.signalModeToManualModeTipPrefix') + this.signalName + this.$t('tip.signalModeToManualModeTipSuffix')]; + this.$refs.confirmControl.doShow(operate); + }); + } break; case 'xian-01__systerm': - this.sendCommandNext(menuOperate.Signal.cancelTrainRoute).then(operate => { - operate['messages'] = `取消以信号机${this.selected.name}为始端的进路,该进路即将由自动信号模式转为人工模式!`; - this.$refs.confirmControl.doShow(operate); - }); + if (this.$store.state.training.prdType === '01') { + this.sendCommand(menuOperate.Signal.cancelTrainRoute); + } else if (this.$store.state.training.prdType === '02') { + this.sendCommandNext(menuOperate.Signal.cancelTrainRoute).then(operate => { + operate['messages'] = `取消以信号机${this.selected.name}为始端的进路,该进路即将由自动信号模式转为人工模式!`; + this.$refs.confirmControl.doShow(operate); + }); + } break; default: this.sendCommand(menuOperate.Signal.cancelTrainRoute); diff --git a/src/jmapNew/theme/fuzhou_01/menus/dialog/childDialog/confirmControlSpeed.vue b/src/jmapNew/theme/fuzhou_01/menus/dialog/childDialog/confirmControlSpeed.vue index a7dbc79db..6aba03407 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/dialog/childDialog/confirmControlSpeed.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/dialog/childDialog/confirmControlSpeed.vue @@ -104,7 +104,7 @@ export default { } this.loading = true; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { this.loading = false; this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); if (valid) { @@ -121,7 +121,7 @@ export default { operation: OperationEvent.Command.cancel.menu.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); if (valid) { this.$emit('setOperate', { step: 0, success: false }); diff --git a/src/jmapNew/theme/fuzhou_01/menus/dialog/routeHandControl.vue b/src/jmapNew/theme/fuzhou_01/menus/dialog/routeHandControl.vue index e1904156d..75952e2cf 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/dialog/routeHandControl.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/dialog/routeHandControl.vue @@ -257,7 +257,7 @@ export default { // 进路交人工控 humanControl() { this.loading = true; - commitOperate(menuOperate.Signal.humanControl, {routeCodeList:this.selection}, 2).then(({valid})=>{ + commitOperate(menuOperate.Signal.humanControl, {routeCodeList:this.selection}, 2, `${this.selection[0]}`).then(({valid})=>{ this.loading = false; if (valid) { this.doClose(); @@ -271,7 +271,7 @@ export default { // 进路交自动控 atsAutoControl() { this.loading = true; - commitOperate(menuOperate.Signal.atsAutoControl, {routeCodeList:this.selection}, 2).then(({valid})=>{ + commitOperate(menuOperate.Signal.atsAutoControl, {routeCodeList:this.selection}, 2, `${this.selection[0]}`).then(({valid})=>{ this.loading = false; if (valid) { this.doClose(); diff --git a/src/jmapNew/theme/fuzhou_01/menus/dialog/routeSelection.vue b/src/jmapNew/theme/fuzhou_01/menus/dialog/routeSelection.vue index 2ea1016a7..bd5af1dcb 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/dialog/routeSelection.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/dialog/routeSelection.vue @@ -227,9 +227,14 @@ export default { commit() { if (this.row && this.row.canSetting) { this.loading = true; - commitOperate(menuOperate.Signal.arrangementRoute, {routeCode: this.row.code}, 2).then(({valid})=>{ + commitOperate(menuOperate.Signal.arrangementRoute, {routeCode: this.row.code}, 1, `${this.row.code}`).then(({valid, operate})=>{ this.loading = false; if (valid) { + this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); + delete operate.val; + const station = this.$store.getters['map/getDeviceByCode'](this.row.stationCode); + operate.messages = [this.$t('menu.accessSetting') + this.$t('global.colon') + `${this.row.name}(${station.name})`]; + this.$refs.confirmControl.doShow(operate); this.doClose(); } }).catch(() => { diff --git a/src/jmapNew/theme/fuzhou_01/menus/dialog/sectionControl.vue b/src/jmapNew/theme/fuzhou_01/menus/dialog/sectionControl.vue index 0be10840a..9f8d9fc22 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/dialog/sectionControl.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/dialog/sectionControl.vue @@ -28,7 +28,6 @@ import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; import OperationHandler from '@/scripts/cmdPlugin/OperationHandler'; import NoticeInfo from './childDialog/childDialog/noticeInfo'; -import CMD from '@/scripts/cmdPlugin/CommandEnum'; import { menuOperate, commitOperate } from '../utils/menuOperate'; export default { diff --git a/src/jmapNew/theme/fuzhou_01/menus/dialog/speedCmdControl.vue b/src/jmapNew/theme/fuzhou_01/menus/dialog/speedCmdControl.vue index f4cd11712..bae5f23ae 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/dialog/speedCmdControl.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/dialog/speedCmdControl.vue @@ -445,6 +445,7 @@ export default { over: true, operation: '', cmdType: '', + val: `${this.speed}`, param: { speedLimitValue: this.speed } diff --git a/src/jmapNew/theme/fuzhou_01/menus/menuBar.vue b/src/jmapNew/theme/fuzhou_01/menus/menuBar.vue index e59b47d55..255402deb 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/menuBar.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/menuBar.vue @@ -490,7 +490,7 @@ export default { }; this.tempClassA = index; this.tempClassB = -1; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); } @@ -510,7 +510,7 @@ export default { operation: item.operate.operation }; this.tempClassB = index; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); } @@ -521,7 +521,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); @@ -534,7 +534,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); @@ -547,7 +547,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); @@ -560,7 +560,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); @@ -573,7 +573,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); @@ -586,7 +586,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); @@ -599,7 +599,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); @@ -612,7 +612,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); @@ -625,7 +625,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); @@ -638,7 +638,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); @@ -651,7 +651,7 @@ export default { const operate = { operation: order.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { this.closeMenu(true); this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); diff --git a/src/jmapNew/theme/fuzhou_01/menus/menuDialog/childDialog/twoConfirmation.vue b/src/jmapNew/theme/fuzhou_01/menus/menuDialog/childDialog/twoConfirmation.vue index bc9627b25..132d9ebbc 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/menuDialog/childDialog/twoConfirmation.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/menuDialog/childDialog/twoConfirmation.vue @@ -59,6 +59,8 @@ export default { return OperationEvent.StationControl.requestStationControl.confirm.domId; } else if (this.operation == OperationEvent.StationControl.requestCentralControl.menu.operation) { return OperationEvent.StationControl.requestCentralControl.confirm.domId; + } else if (this.operation == OperationEvent.StationControl.forcedStationControl.menu.operation) { + return OperationEvent.StationControl.forcedStationControl.confirm.domId; } else { return ''; } @@ -107,16 +109,20 @@ export default { commit() { const operate = { over: true, - operation: this.operation + operation: '' }; if (this.operation == OperationEvent.StationControl.requestCentralControl.menu.operation) { operate.cmdType = CMD.ControlConvertMenu.CMD_CM_APPLY_FOR_CENTER_CONTROL; + operate.operation = OperationEvent.StationControl.requestCentralControl.confirm.operation; } else if (this.operation == OperationEvent.StationControl.requestStationControl.menu.operation) { operate.cmdType = CMD.ControlConvertMenu.CMD_CM_APPLY_FOR_STATION_CONTROL; + operate.operation = OperationEvent.StationControl.requestStationControl.confirm.operation; } else if (this.operation == OperationEvent.StationControl.emergencyStationControl.menu.operation) { operate.cmdType = CMD.ControlConvertMenu.CMD_CM_EMERGENCY_STATION_CONTROL; + operate.operation = OperationEvent.StationControl.emergencyStationControl.confirm.operation; } else if (this.operation == OperationEvent.StationControl.forcedStationControl.menu.operation) { operate.cmdType = CMD.ControlConvertMenu.CMD_CM_FORCE_STATION_CONTROL; + operate.operation = OperationEvent.StationControl.forcedStationControl.confirm.operation; } this.$emit('setOperate', { selection: this.operate.selection, commit: true }); this.$store.dispatch('training/nextNew', operate).then(({ valid, response }) => { diff --git a/src/jmapNew/theme/fuzhou_01/menus/menuDialog/passwordBox.vue b/src/jmapNew/theme/fuzhou_01/menus/menuDialog/passwordBox.vue index dd3767489..b901e85fd 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/menuDialog/passwordBox.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/menuDialog/passwordBox.vue @@ -137,18 +137,15 @@ export default { commit() { const operate = { }; - if (OperationHandler.checkOperationIsCurrentOperate(this.operation, OperationEvent.StationControl.forcedStationControl)) { /** 强制站控*/ operate.operation = OperationEvent.StationControl.forcedStationControl.passwordConfirm.operation; } - if (this.model.password == '123456') { this.loading = true; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { this.loading = false; this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); - if (valid) { this.$emit('setLoginResult', { operation: operate.operation, diff --git a/src/jmapNew/theme/fuzhou_01/menus/menuDialog/stationControlConvert.vue b/src/jmapNew/theme/fuzhou_01/menus/menuDialog/stationControlConvert.vue index eb18df64a..a7e7b94e4 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/menuDialog/stationControlConvert.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/menuDialog/stationControlConvert.vue @@ -169,7 +169,6 @@ export default { this.removeSelection(code); }); } - this.$store.dispatch('socket/shiftMsgQueue'); this.disabledClose = false; this.disabledSure = false; } diff --git a/src/jmapNew/theme/fuzhou_01/menus/menuSection.vue b/src/jmapNew/theme/fuzhou_01/menus/menuSection.vue index d1508e491..a3c532f7a 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/menuSection.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/menuSection.vue @@ -15,7 +15,6 @@ import SectionCmdControl from './dialog/sectionCmdControl'; import SpeedCmdControl from './dialog/speedCmdControl'; import NoticeInfo from './dialog/childDialog/childDialog/noticeInfo'; import CMD from '@/scripts/cmdPlugin/CommandEnum'; -import Handler from '@/scripts/cmdPlugin/Handler'; import { mapGetters } from 'vuex'; import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; import { DeviceMenu, OperateMode } from '@/scripts/ConstDic'; diff --git a/src/jmapNew/theme/fuzhou_01/menus/passiveDialog/alarm.vue b/src/jmapNew/theme/fuzhou_01/menus/passiveDialog/alarm.vue index 471f03888..030ac7f4e 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/passiveDialog/alarm.vue +++ b/src/jmapNew/theme/fuzhou_01/menus/passiveDialog/alarm.vue @@ -97,6 +97,10 @@ export default { '01': this.$t('menu.passiveDialog.centralControl'), '02': this.$t('menu.passiveDialog.stationControl') }, + controlModeMap: { + CM_Reply_Center_Control: this.$t('menu.passiveDialog.stationToCentral'), + CM_Reply_Station_Control: this.$t('menu.passiveDialog.centralToStation') + }, model: { lineName: '', unitName: '', @@ -125,19 +129,16 @@ export default { }, watch: { '$store.state.socket.msgHead': function (elem) { - if (elem && elem.type == 'resp' && elem.agree) { - if (elem.agree) { - const operate = this.$store.state.training.operate; - const control = this.$store.getters['map/getDeviceByCode'](elem.stationControlCode); - const station = this.$store.getters['map/getDeviceByCode'](control.stationCode); - const newOperate = { - type: operate.type, - name: station.name, - currentMode: elem.currentMode - }; - - this.doShow(newOperate); - } + if (elem && elem.success) { + const operate = this.$store.state.training.operate; + // const control = this.$store.getters['map/getDeviceByCode'](elem.stationControlCode); + const station = this.$store.getters['map/getDeviceByCode'](elem.stationCodes[0]); + const newOperate = { + type: operate.type, + name: station.name, + currentMode: this.controlModeMap[elem.operateType] + }; + this.doShow(newOperate); } } }, @@ -160,7 +161,7 @@ export default { childType: this.$t('menu.passiveDialog.childTypeTips'), timeSummary: this.$t('menu.passiveDialog.controlModeSummary'), recommendedOperation: '', - alarmDetail: `${this.$t('menu.passiveDialog.controlModeTransfer')} ${this.operate.name}${this.$t('menu.passiveDialog.alarmDetailOne')}${operate.currentMode == '01' ? this.$t('menu.passiveDialog.stationToCentral') : this.$t('menu.passiveDialog.centralToStation')}!` + alarmDetail: `${this.$t('menu.passiveDialog.controlModeTransfer')} ${this.operate.name}${this.$t('menu.passiveDialog.alarmDetailOne')}${operate.currentMode}!` }; this.dialogShow = true; this.$nextTick(function () { @@ -179,7 +180,7 @@ export default { operation: OperationEvent.Command.close.alarm.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); if (valid) { this.doClose(); @@ -190,7 +191,7 @@ export default { const operate = { operation: OperationEvent.Command.close.alarm.operation }; - this.$store.dispatch('training/next', operate).then(({ valid }) => { + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); if (valid) { this.doClose(); diff --git a/src/jmapNew/theme/fuzhou_01/menus/utils/menuOperate.js b/src/jmapNew/theme/fuzhou_01/menus/utils/menuOperate.js index 6775b20d8..b3552fd91 100644 --- a/src/jmapNew/theme/fuzhou_01/menus/utils/menuOperate.js +++ b/src/jmapNew/theme/fuzhou_01/menus/utils/menuOperate.js @@ -54,6 +54,11 @@ export const menuOperate = { setFault: { operation: OperationEvent.Section.stoppage.menu.operation, cmdType: CMD.Section.CMD_SECTION_ADD_FAULT + }, + axlePreReset:{ + // 区段计轴预复位 + operation: OperationEvent.Section.axlePreReset.menu.operation, + cmdType: CMD.Section.CMD_SECTION_AXIS_PRE_RESET } }, Signal:{ @@ -130,6 +135,16 @@ export const menuOperate = { // 取消自动折返 operation: OperationEvent.AutoTurnBack.CancelAutoTurnBackButton.menu.operation, cmdType: CMD.Signal.CMD_SIGNAL_CANCEL_AUTO_TURN_BACK + }, + setAutoTrigger: { + // 设置联锁自动触发 + operation: OperationEvent.Signal.setAutoTrigger.menu.operation, + cmdType: CMD.Signal.CMD_SIGNAL_SET_CI_AUTO_TRIGGER + }, + cancelAutoTrigger: { + // 取消联锁自动触发 + operation: OperationEvent.Signal.cancelAutoTrigger.menu.operation, + cmdType: CMD.Signal.CMD_SIGNAL_CANCEL_CI_AUTO_TRIGGER } }, Switch:{ @@ -314,12 +329,13 @@ export const menuOperate = { } }; -export function commitOperate(operate, paramList, over) { +export function commitOperate(operate, paramList, over, val) { const step = { start: true, operation: operate.operation, param:{} }; + if (val) { step.val = val; } step.param = paramList; // over 0为首次操作,1为中间操作,2为最后操作,3为直接一次性操作 if (over == 0 || over == 3) { diff --git a/src/jmapNew/theme/fuzhou_01/operationConfig.js b/src/jmapNew/theme/fuzhou_01/operationConfig.js index 1dce1900f..6c2646f1a 100644 --- a/src/jmapNew/theme/fuzhou_01/operationConfig.js +++ b/src/jmapNew/theme/fuzhou_01/operationConfig.js @@ -47,7 +47,7 @@ export default { { deviceType: 'bar', orderNum: 2, operateCode: '2041', tip: '鼠标左键点击【转为中控】' }, { deviceType: '05', orderNum: 3, operateCode: '2042', tip: '鼠标左键选择所需要转换的控制区域【{1}】', val: '{2}' }, { deviceType: '05', orderNum: 4, operateCode: '204', tip: '鼠标左键点击【请求中控】', val: '{2}' }, - { deviceType: '05', orderNum: 5, operateCode: '2043', tip: '鼠标左键点击【确认】按钮', val: '{2}' }, + { deviceType: '05', orderNum: 5, operateCode: '2043', tip: '鼠标左键点击【确认】按钮' }, { deviceType: '05', orderNum: 6, operateCode: '0013', tip: '鼠标左键点击【确定】按钮' }, { deviceType: 'bar', orderNum: 7, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' } ] @@ -66,7 +66,7 @@ export default { { deviceType: 'bar', orderNum: 2, operateCode: '2021', tip: '鼠标左键点击【转为站控】' }, { deviceType: '05', orderNum: 3, operateCode: '2022', tip: '鼠标左键选择所需要转换的控制区域【{1}】', val: '{2}' }, { deviceType: '05', orderNum: 4, operateCode: '202', tip: '鼠标左键点击【请求站控】', val: '{2}' }, - { deviceType: '05', orderNum: 5, operateCode: '2023', tip: '鼠标左键点击【确认】按钮', val: '{2}' }, + { deviceType: '05', orderNum: 5, operateCode: '2023', tip: '鼠标左键点击【确认】按钮' }, { deviceType: '05', orderNum: 6, operateCode: '0013', tip: '鼠标左键点击【确定】按钮' }, { deviceType: 'bar', orderNum: 7, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' } ] @@ -86,7 +86,7 @@ export default { { deviceType: 'bar', orderNum: 3, operateCode: '2035', tip: '鼠标左键输入默认密码【123456】后,点击【确定】按钮' }, { deviceType: '05', orderNum: 4, operateCode: '2032', tip: '鼠标左键选择所需要转换的控制区域【{1}】', val: '{2}' }, { deviceType: '05', orderNum: 5, operateCode: '203', tip: '鼠标左键点击【强制站控】', val: '{2}' }, - { deviceType: '05', orderNum: 6, operateCode: '2033', tip: '鼠标左键点击【确认】按钮', val: '{2}' }, + { deviceType: '05', orderNum: 6, operateCode: '2033', tip: '鼠标左键点击【确认】按钮' }, { deviceType: '05', orderNum: 7, operateCode: '0013', tip: '鼠标左键点击【确定】按钮' }, { deviceType: 'bar', orderNum: 8, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' } ] @@ -444,7 +444,7 @@ export default { { deviceType: '03', orderNum: 2, operateCode: '4081', tip: '鼠标左键点击【下达】按钮' }, { deviceType: '03', orderNum: 3, operateCode: '4082', tip: '鼠标左键点击【确认】按钮' }, { deviceType: '03', orderNum: 4, operateCode: '4083', tip: '鼠标左键点击【确认1】按钮' }, - { deviceType: '03', orderNum: 5, operateCode: '4084', tip: '鼠标左键点击【确认2】按钮'}, + { deviceType: '03', orderNum: 5, operateCode: '4084', tip: '鼠标左键点击【确认2】按钮', val: '0' }, { deviceType: '03', orderNum: 6, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } ] }, @@ -620,7 +620,7 @@ export default { { deviceType: '02', orderNum: 2, operateCode: '1141', tip: '鼠标左键点击【下达】按钮' }, { deviceType: '02', orderNum: 3, operateCode: '1142', tip: '鼠标左键点击【确认】按钮' }, { deviceType: '02', orderNum: 4, operateCode: '1143', tip: '鼠标左键点击【确认1】按钮' }, - { deviceType: '02', orderNum: 5, operateCode: '1144', tip: '鼠标左键点击【确认2】按钮' }, + { deviceType: '02', orderNum: 5, operateCode: '1144', tip: '鼠标左键点击【确认2】按钮', val: '0' }, { deviceType: '02', orderNum: 6, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } ] }, @@ -653,7 +653,7 @@ export default { stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '303', tip: '鼠标右键菜单选择【进路取消】' }, { deviceType: '04', orderNum: 2, operateCode: '303', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '04', orderNum: 3, operateCode: '3031', tip: '鼠标左键点击【确定】按钮' } + { deviceType: '04', orderNum: 3, operateCode: '303', tip: '鼠标左键点击【确定】按钮' } ] }, { @@ -754,14 +754,14 @@ export default { minDuration: 8, operateType: 'Signal_Open_Auto_Setting', skinCode: '02', - trainingName: '自排开({5})', + trainingName: '自排开({3})', trainingRemark: '自排开', trainingType: 'Signal', productTypes: ['02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '315', tip: '鼠标右键菜单选择【自排开】' }, - { deviceType: '04', orderNum: 2, operateCode: '3151', tip: '鼠标左键选择控制状态为"人工"的进路', val: '{6}' }, - { deviceType: '04', orderNum: 3, operateCode: '315', tip: '鼠标左键点击【确定】按钮', val: '{6}' } + { deviceType: '04', orderNum: 2, operateCode: '3151', tip: '鼠标左键选择控制状态为"人工"的进路', val: '{4}' }, + { deviceType: '04', orderNum: 3, operateCode: '315', tip: '鼠标左键点击【确定】按钮', val: '{4}' } ] }, { @@ -769,14 +769,14 @@ export default { minDuration: 8, operateType: 'Signal_Close_Auto_Setting', skinCode: '02', - trainingName: '自排关({5})', + trainingName: '自排关({3})', trainingRemark: '自排关', trainingType: 'Signal', productTypes: ['02'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '314', tip: '鼠标右键菜单选择【自排关】' }, - { deviceType: '04', orderNum: 2, operateCode: '3141', tip: '鼠标左键选择第一条进路', val: '{6}' }, - { deviceType: '04', orderNum: 3, operateCode: '314', tip: '鼠标左键点击【确定】按钮', val: '{6}' } + { deviceType: '04', orderNum: 2, operateCode: '3141', tip: '鼠标左键选择进路({3})', val: '{4}' }, + { deviceType: '04', orderNum: 3, operateCode: '314', tip: '鼠标左键点击【确定】按钮', val: '{4}' } ] }, { diff --git a/src/scripts/cmdPlugin/ValidateHandler.js b/src/scripts/cmdPlugin/ValidateHandler.js index 677a96f61..f7ca6183e 100644 --- a/src/scripts/cmdPlugin/ValidateHandler.js +++ b/src/scripts/cmdPlugin/ValidateHandler.js @@ -60,7 +60,7 @@ class ValidateHandler { } } else if (operate.over) { // 最后一步校验 const standard = steps[order]; - console.log(operate, standard, operate.code == standard.code, operate.operation == standard.operation, operate.val == standard.val); + // console.log(operate, standard, operate.code == standard.code, operate.operation == standard.operation, operate.val == standard.val); if (operate && standard && operate.operation == standard.operation && operate.code == standard.code && @@ -69,13 +69,22 @@ class ValidateHandler { } } else if (order < steps.length) { // 普通步骤信息校验 const standard = steps[order]; - console.log(operate, standard, operate.code == standard.code, operate.operation == standard.operation, operate.val == standard.val); - if (operate && standard && - operate.code == standard.code && - operate.operation == standard.operation && - operate.val == standard.val) { - valid = true; + // console.log(operate, standard, operate.code == standard.code, operate.operation == standard.operation, operate.val == standard.val); + if (standard.type === 'bar') { + if (operate && standard && + operate.operation == standard.operation && + operate.val == standard.val) { + valid = true; + } + } else { + if (operate && standard && + operate.code == standard.code && + operate.operation == standard.operation && + operate.val == standard.val) { + valid = true; + } } + } return valid;