diff --git a/src/jmapNew/theme/ningbo_03/menus/menuBar.vue b/src/jmapNew/theme/ningbo_03/menus/menuBar.vue index 5a06858d1..a4eca340d 100644 --- a/src/jmapNew/theme/ningbo_03/menus/menuBar.vue +++ b/src/jmapNew/theme/ningbo_03/menus/menuBar.vue @@ -245,7 +245,6 @@ export default { } }, data() { - console.log(OperationEvent.Command.commandNingBo.line_stand) return { classA: -1, classB: -1, @@ -1378,10 +1377,10 @@ export default { EventBus.$emit('closeMenu'); }); }, - handleArrangeRoute() { + handleArrangeRoute(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1391,10 +1390,10 @@ export default { } }); }, - handleTrainDistributionRunLine() { + handleTrainDistributionRunLine(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1404,10 +1403,10 @@ export default { } }); }, - handleTrainDistributionClass() { + handleTrainDistributionClass(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1417,10 +1416,10 @@ export default { } }); }, - handleTrainDistributionBack() { + handleTrainDistributionBack(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1431,10 +1430,10 @@ export default { }); }, // 站台开放/关闭 - standOpenOrClose() { + standOpenOrClose(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1445,10 +1444,10 @@ export default { }); }, // 站台扣车 - setStandDetain() { + setStandDetain(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1458,10 +1457,10 @@ export default { } }); }, - setIntervalStopNumber() { + setIntervalStopNumber(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1472,10 +1471,10 @@ export default { }); }, // 停站时间 - setAllocateTime() { + setAllocateTime(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1486,10 +1485,10 @@ export default { }); }, // 控制权转移 - authorizeTransfer() { + authorizeTransfer(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1499,10 +1498,10 @@ export default { } }); }, - showStandDetail() { + showStandDetail(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1512,10 +1511,10 @@ export default { } }); }, - setSwitchCommand() { + setSwitchCommand(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1526,10 +1525,10 @@ export default { }); }, // 道岔封锁 - setBlockSwitch() { + setBlockSwitch(item) { const operate = { type: 'bar', - operation: OperationEvent.Switch.block.button.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1541,10 +1540,10 @@ export default { }); }, // 道岔解除封锁 - setUnblockSwitch() { + setUnblockSwitch(item) { const operate = { type: 'bar', - operation: OperationEvent.Switch.unblock.button.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1555,10 +1554,10 @@ export default { }); }, // 道岔授权 - setSwitchActive() { + setSwitchActive(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) =>{ if (valid) { @@ -1569,10 +1568,10 @@ export default { }); }, // 道岔显示详情 - showSwitchDetail() { + showSwitchDetail(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1583,10 +1582,10 @@ export default { }); }, // 信号引导 - setSignalGuide() { + setSignalGuide(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1597,10 +1596,10 @@ export default { } }); }, - setSignalCanBlock() { + setSignalCanBlock(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1612,10 +1611,10 @@ export default { }); }, // 进路指令 - setRouteCommand() { + setRouteCommand(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1625,10 +1624,10 @@ export default { } }); }, - handleOpenSection() { + handleOpenSection(item) { const operate = { type: 'bar', - operation: OperationEvent.Section.unlock.menu.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1638,10 +1637,10 @@ export default { } }); }, - handleCloseSection() { + handleCloseSection(item) { const operate = { type: 'bar', - operation: OperationEvent.Section.lock.menu.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1651,10 +1650,10 @@ export default { } }); }, - handleLimitSpeed() { + handleLimitSpeed(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1664,10 +1663,10 @@ export default { } }); }, - handleSectionShow() { + handleSectionShow(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1677,10 +1676,10 @@ export default { } }); }, - handleLock() { + handleLock(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1690,10 +1689,10 @@ export default { } }); }, - handleUnLock() { + handleUnLock(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1703,10 +1702,10 @@ export default { } }); }, - handleRestoration() { + handleRestoration(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1716,10 +1715,10 @@ export default { } }); }, - handleSectionRestoration() { + handleSectionRestoration(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1729,10 +1728,10 @@ export default { } }); }, - setSignalModel() { + setSignalModel(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1742,10 +1741,10 @@ export default { } }); }, - handleSectionStopShow() { + handleSectionStopShow(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1755,10 +1754,10 @@ export default { } }); }, - setSignalBlock() { + setSignalBlock(item) { const operate = { type: 'bar', - operation: OperationEvent.Signal.lock.menu.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1768,10 +1767,10 @@ export default { } }); }, - setSignalCancelBlock() { + setSignalCancelBlock(item) { const operate = { type: 'bar', - operation: OperationEvent.Signal.unlock.menu.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1781,10 +1780,10 @@ export default { } }); }, - showSignalDetail() { + showSignalDetail(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1794,10 +1793,10 @@ export default { } }); }, - setCbtcMode() { + setCbtcMode(item) { const operate = { type: 'bar', - operation: OperationEvent.Command.mBar.cbtcMode.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1807,10 +1806,10 @@ export default { } }); }, - setReserveMode() { + setReserveMode(item) { const operate = { type: 'bar', - operation: OperationEvent.Command.mBar.reserveMode.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1820,10 +1819,10 @@ export default { } }); }, - setSystemDetain() { + setSystemDetain(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1834,10 +1833,10 @@ export default { } }); }, - setRunningInterval() { + setRunningInterval(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1847,10 +1846,10 @@ export default { } }); }, - adjustStrategy() { + adjustStrategy(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1860,10 +1859,10 @@ export default { } }); }, - setTrainDepart() { + setTrainDepart(item) { const operate = { type: 'bar', - operation: OperationEvent.Train.setTrainDeparture.menu.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1873,10 +1872,10 @@ export default { } }); }, - breakAway() { + breakAway(item) { const operate = { type: 'bar', - operation: OperationEvent.Train.breakAwayPlan.menu.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1886,10 +1885,10 @@ export default { } }); }, - setTrainReset() { + setTrainReset(item) { const operate = { type: 'bar', - operation: OperationEvent.Train.setTrainReset.menu.operation + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1899,10 +1898,10 @@ export default { } }); }, - setJumpStop() { + setJumpStop(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -1912,10 +1911,10 @@ export default { } }); }, - cancelDeviation() { + cancelDeviation(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1925,10 +1924,10 @@ export default { } }); }, - updateDeviation() { + updateDeviation(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1938,10 +1937,10 @@ export default { } }); }, - cancelCbtcRoute() { + cancelCbtcRoute(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1951,10 +1950,10 @@ export default { } }); }, - setIdAssociated() { + setIdAssociated(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1964,10 +1963,10 @@ export default { } }); }, - setOccupancyCorrelation() { + setOccupancyCorrelation(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1977,10 +1976,10 @@ export default { } }); }, - modifyTrainNumber() { + modifyTrainNumber(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -1990,10 +1989,10 @@ export default { } }); }, - setRunType() { + setRunType(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -2003,10 +2002,10 @@ export default { } }); }, - showTrainDetail() { + showTrainDetail(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { if (valid) { @@ -2016,10 +2015,10 @@ export default { } }); }, - showAllTrainDetail() { + showAllTrainDetail(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { @@ -2029,10 +2028,10 @@ export default { } }); }, - showRouteDetail() { + showRouteDetail(item) { const operate = { type: 'bar', - operation: '' + operation: item.operation }; this.$store.dispatch('training/nextNew', operate).then(({valid}) => { if (valid) { diff --git a/src/jmapNew/theme/ningbo_03/operationConfig.js b/src/jmapNew/theme/ningbo_03/operationConfig.js index 7397df9f6..34402190c 100644 --- a/src/jmapNew/theme/ningbo_03/operationConfig.js +++ b/src/jmapNew/theme/ningbo_03/operationConfig.js @@ -1,792 +1,948 @@ +import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; +import CMD from '@/scripts/cmdPlugin/CommandEnum'; + export default { list: [ - { + // { + // maxDuration: 8, + // minDuration: 5, + // operateType: 'Stand_Set_Hold_Train', + // skinCode: '06', + // trainingName: '扣车({10}-{12} 站台)', + // trainingRemark: '设置扣车功能', + // trainingType: 'Stand', + // productTypes: ['01', '02'], // 产品类型 01 现地 02 行调 + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '504', tip: '鼠标右键菜单选择【扣车】' }, + // { deviceType: '06', orderNum: 2, operateCode: '504', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 8, + // minDuration: 5, + // operateType: 'Stand_Cancel_Hold_Train', + // skinCode: '06', + // trainingName: '取消扣车({10}-{12} 站台)', + // trainingRemark: '取消扣车功能', + // trainingType: 'Stand', + // productTypes: ['01', '02'], // 产品类型 01 现地 02 行调 + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '505', tip: '鼠标右键菜单选择【取消扣车】' }, + // { deviceType: '06', orderNum: 2, operateCode: '505', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 8, + // minDuration: 5, + // operateType: 'Stand_Set_Hold_Train_Batch', + // skinCode: '06', + // trainingName: '批量扣车({10}-{12} 站台)', + // trainingRemark: '批量扣车功能', + // trainingType: 'Stand', + // productTypes: ['02'], // 产品类型 01 现地 02 行调 + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '515', tip: '鼠标右键菜单选择【批量扣车】' }, + // { deviceType: '06', orderNum: 2, operateCode: '515', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 8, + // minDuration: 5, + // operateType: 'Stand_Cancel_Hold_Train_Batch', + // skinCode: '06', + // trainingName: '取消批量扣车({10}-{12} 站台)', + // trainingRemark: '取消批量扣车功能', + // trainingType: 'Stand', + // productTypes: ['02'], // 产品类型 01 现地 02 行调 + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '516', tip: '鼠标右键菜单选择【取消批量扣车】' }, + // { deviceType: '06', orderNum: 2, operateCode: '516', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Early_Depart', + // skinCode: '06', + // trainingName: '提前发车({10}-{12}站台)', + // trainingRemark: '提前发车功能', + // trainingType: 'Stand', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '501', tip: '鼠标右键菜单选择【提前发车】' }, + // { deviceType: '06', orderNum: 2, operateCode: '501', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Set_Jump_Stop', + // skinCode: '06', + // trainingName: '设置跳停({10}-{12}站台)', + // trainingRemark: '设置跳停功能', + // trainingType: 'Stand', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '502', tip: '鼠标右键菜单选择【设置跳停】' }, + // { deviceType: '06', orderNum: 2, operateCode: '502', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Cancel_Jump_Stop', + // skinCode: '06', + // trainingName: '取消跳停({10}-{12}站台)', + // trainingRemark: '设置取消跳停功能', + // trainingType: 'Stand', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '503', tip: '鼠标右键菜单选择【取消跳停】' }, + // { deviceType: '06', orderNum: 2, operateCode: '503', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Set_Park_Time', + // skinCode: '06', + // trainingName: '设置停站时间({10}-{12}站台)', + // trainingRemark: '设置停站时间(自动, 一直有效)', + // 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: '鼠标左键点击【确认】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Set_Park_Time', + // skinCode: '06', + // trainingName: '设置停站时间({10}-{12}站台)', + // trainingRemark: '设置停站时间(人工, 20秒, 一直有效)', + // 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: '鼠标左键点击【确认】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Set_Park_Time', + // skinCode: '06', + // trainingName: '设置停站时间({10}-{12}站台)', + // trainingRemark: '设置停站时间(人工, 20秒, 一次有效)', + // 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: '5093', tip: '鼠标左键点击,选择【一次有效】', val: 'false' }, + // { deviceType: '06', orderNum: 5, operateCode: '509', tip: '鼠标左键点击【确认】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Set_Run_Time', + // skinCode: '06', + // trainingName: '设置运行等级({10}-{12} 站台)', + // trainingRemark: '设置运行等级(设置区间 运行等级1,运行时间为115,一直有效)', + // trainingType: 'Stand', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '510', tip: '鼠标右键菜单选择【设置运行等级】' }, + // { deviceType: '06', orderNum: 2, operateCode: '5104', tip: '鼠标左键点击,选择【1】', val: '1' }, + // { deviceType: '06', orderNum: 3, operateCode: '5101', tip: '鼠标左键点击,选择【115】', val: '115' }, + // { deviceType: '06', orderNum: 4, operateCode: '5103', tip: '鼠标左键点击,选择【一直有效】', val: 'true' }, + // { deviceType: '06', orderNum: 5, operateCode: '510', tip: '鼠标左键点击【确认】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Set_Run_Time', + // skinCode: '06', + // trainingName: '设置运行等级({10}-{12} 站台)', + // trainingRemark: '设置运行等级(设置区间 运行等级自动,一直有效)', + // trainingType: 'Stand', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '510', tip: '鼠标右键菜单选择【设置运行等级】' }, + // { deviceType: '06', orderNum: 2, operateCode: '5104', tip: '鼠标左键点击,选择【自动】', val: '0' }, + // { deviceType: '06', orderNum: 3, operateCode: '5103', tip: '鼠标左键点击,选择【一直有效】', val: 'true' }, + // { deviceType: '06', orderNum: 4, operateCode: '510', tip: '鼠标左键点击【确认】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Set_Hold_Train_Auto', + // skinCode: '06', + // trainingName: '区间列车数量限制({10}-{12}站台)', + // trainingRemark: '区间列车数量限制', + // trainingType: 'Stand', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '517', tip: '鼠标右键菜单选择【区间列车数量限制】' }, + // { deviceType: '06', orderNum: 2, operateCode: '517', tip: '鼠标左键点击【确认】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Stand_Cancel_Hold_Train_Auto', + // skinCode: '06', + // trainingName: '取消区间列车数量限制({10}-{12}站台)', + // trainingRemark: '取消区间列车数量限制', + // trainingType: 'Stand', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '518', tip: '鼠标右键菜单选择【取消区间列车数量限制】' }, + // { deviceType: '06', orderNum: 2, operateCode: '518', tip: '鼠标左键点击【确认】按钮' } + // ] + // }, + // { + // maxDuration: 8, + // minDuration: 5, + // operateType: 'Stand_View_Status', + // skinCode: '06', + // trainingName: '站台详细信息({10}-{12}站台)', + // trainingRemark: '站台详细信息功能', + // trainingType: 'Stand', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '06', orderNum: 1, operateCode: '507', tip: '鼠标右键菜单选择【站台详细信息】' }, + // { deviceType: '06', orderNum: 2, operateCode: '0012', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Section_Fault_Unlock', + // skinCode: '06', + // trainingName: '区段故障解锁({8}{9})', + // trainingRemark: '区段故障解锁', + // trainingType: 'Section', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '402', tip: '鼠标右键菜单选择【区段故障解锁】' }, + // { deviceType: '03', orderNum: 2, operateCode: '4024', tip: '鼠标左键点击【确定】按钮' }, + // { deviceType: '03', orderNum: 3, operateCode: '4028', tip: '鼠标左键选择({8}{9})区段', val: '{19}' }, + // { deviceType: '03', orderNum: 4, operateCode: '4025', tip: '鼠标左键点击【确定】按钮' }, + // { deviceType: '03', orderNum: 5, operateCode: '4023', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Section_Cut_Off', + // skinCode: '06', + // trainingName: '区段跟踪切除({8}{9})', + // trainingRemark: '区段跟踪切除', + // trainingType: 'Section', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '405', tip: '鼠标右键菜单选择【区段跟踪切除】' }, + // { deviceType: '03', orderNum: 2, operateCode: '405', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Section_Active', + // skinCode: '06', + // trainingName: '区段跟踪激活({8}{9})', + // trainingRemark: '区段跟踪激活功能', + // trainingType: 'Section', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '406', tip: '鼠标右键菜单选择【区段跟踪激活】' }, + // { deviceType: '03', orderNum: 2, operateCode: '406', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Section_Set_Limit_Speed', + // skinCode: '06', + // trainingName: '设置临时限速({8}{9})', + // trainingRemark: '设置临时限速功能(限速值:5)', + // trainingType: 'Section', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '407', tip: '鼠标右键菜单选择【设置临时限速】' }, + // { deviceType: '03', orderNum: 2, operateCode: '4076', tip: '鼠标左键选择【限速值5】', val: '5' }, + // { deviceType: '03', orderNum: 3, operateCode: '4071', tip: '鼠标左键点击【下达】按钮' }, + // { deviceType: '03', orderNum: 4, operateCode: '4072', tip: '鼠标左键点击【确认】按钮' }, + // { deviceType: '03', orderNum: 5, operateCode: '4073', tip: '鼠标左键点击【确认1】按钮' }, + // { deviceType: '03', orderNum: 6, operateCode: '4074', tip: '鼠标左键点击【确认2】按钮', val: '5' }, + // { deviceType: '03', orderNum: 7, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Section_Set_Limit_Speed', + // skinCode: '06', + // trainingName: '设置临时限速({8}{9})', + // trainingRemark: '设置临时限速功能-取消临时限速(限速值:不限速)', + // trainingType: 'Section', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '407', tip: '鼠标右键菜单选择【设置临时限速】' }, + // { deviceType: '03', orderNum: 2, operateCode: '4076', tip: '鼠标左键选择【不限速】', val: '0' }, + // { deviceType: '03', orderNum: 3, operateCode: '4071', tip: '鼠标左键点击【下达】按钮' }, + // { deviceType: '03', orderNum: 4, operateCode: '4072', tip: '鼠标左键点击【确认】按钮' }, + // { deviceType: '03', orderNum: 5, operateCode: '4073', tip: '鼠标左键点击【确认1】按钮' }, + // { deviceType: '03', orderNum: 6, operateCode: '4074', tip: '鼠标左键点击【确认2】按钮', val: '0' }, + // { deviceType: '03', orderNum: 7, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Section_Block', + // skinCode: '06', + // trainingName: '区段封锁({8}{9})', + // trainingRemark: '区段封锁功能', + // trainingType: 'Section', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '403', tip: '鼠标右键菜单选择【区段封锁】' }, + // { deviceType: '03', orderNum: 2, operateCode: '403', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Section_Unblock', + // skinCode: '06', + // trainingName: '区段解封({8}{9})', + // trainingRemark: '区段解封功能', + // trainingType: 'Section', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '404', tip: '鼠标右键菜单选择【区段解封】' }, + // { deviceType: '03', orderNum: 2, operateCode: '4043', tip: '鼠标左键点击【确定】按钮' }, + // { deviceType: '03', orderNum: 3, operateCode: '4046', tip: '鼠标左键选择({8}{9})区段', val: '{19}' }, + // { deviceType: '03', orderNum: 4, operateCode: '4044', tip: '鼠标左键点击【确定】按钮' }, + // { deviceType: '03', orderNum: 5, operateCode: '4042', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Section_Confirm_Axis_Valid', + // skinCode: '06', + // trainingName: '确认计轴有效({8}{9})', + // trainingRemark: '确认计轴有效功能', + // trainingType: 'Section', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '412', tip: '鼠标右键菜单选择【确认计轴有效】' }, + // { deviceType: '03', orderNum: 2, operateCode: '4123', tip: '鼠标左键选择【确认】' }, + // { deviceType: '03', orderNum: 3, operateCode: '4121', tip: '鼠标左键选择{20}', val: '{22}' }, + // { deviceType: '03', orderNum: 4, operateCode: '4122', tip: '鼠标左键选择({8}{9})', val: '{19}' }, + // { deviceType: '03', orderNum: 5, operateCode: '4124', tip: '鼠标左键点击【确认】按钮' }, + // { deviceType: '03', orderNum: 6, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Normal_Position', + // skinCode: '06', + // trainingName: '定操({7})', + // trainingRemark: '定操({7})', + // trainingType: 'Switch', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '02', orderNum: 1, operateCode: '101', tip: '鼠标左键菜单选择【定操】' }, + // { deviceType: '02', orderNum: 2, operateCode: '101', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Reverse_Position', // 0313 新增定位字典 + // skinCode: '06', + // trainingName: '反操({7})', + // trainingRemark: '反操({7})', + // trainingType: 'Switch', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '02', orderNum: 1, operateCode: '102', tip: '鼠标右键菜单选择【反操】' }, + // { deviceType: '02', orderNum: 2, operateCode: '102', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Cut_Off', + // skinCode: '06', + // trainingName: '区段切除({7})', + // trainingRemark: '区段切除', + // trainingType: 'Switch', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '02', orderNum: 1, operateCode: '111', tip: '鼠标右键菜单选择【区段切除】' }, + // { deviceType: '02', orderNum: 2, operateCode: '111', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Active', + // skinCode: '06', + // trainingName: '区段激活({7})', + // trainingRemark: '区段激活功能', + // trainingType: 'Switch', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '02', orderNum: 1, operateCode: '112', tip: '鼠标右键菜单选择【区段激活】' }, + // { deviceType: '02', orderNum: 2, operateCode: '112', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Confirm_Axis_Valid', + // skinCode: '06', + // trainingName: '确认计轴有效({8}{9})', + // trainingRemark: '确认计轴有效功能', + // trainingType: 'Switch', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '412', tip: '鼠标右键菜单选择【确认计轴有效】' }, + // { deviceType: '03', orderNum: 2, operateCode: '4123', tip: '鼠标左键选择【确认】' }, + // { deviceType: '03', orderNum: 3, operateCode: '4121', tip: '鼠标左键选择{21}', val: '{23}' }, + // { deviceType: '03', orderNum: 4, operateCode: '4122', tip: '鼠标左键选择({25})', val: '{24}' }, + // { deviceType: '03', orderNum: 5, operateCode: '4124', tip: '鼠标左键点击【确认】按钮' }, + // { deviceType: '03', orderNum: 6, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Single_Lock', + // skinCode: '06', + // trainingName: '道岔单锁({7})', + // trainingRemark: '道岔单锁功能', + // trainingType: 'Switch', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '02', orderNum: 1, operateCode: '103', tip: '鼠标右键菜单选择【道岔单锁】' }, + // { deviceType: '02', orderNum: 2, operateCode: '103', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Single_Unlock', + // skinCode: '06', + // trainingName: '道岔单解({7})', + // trainingRemark: '道岔单解功能', + // trainingType: 'Switch', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '104', tip: '鼠标右键菜单选择【道岔单解】' }, + // { deviceType: '03', orderNum: 2, operateCode: '1043', tip: '鼠标左键点击【确定】按钮' }, + // { deviceType: '03', orderNum: 3, operateCode: '1046', tip: '鼠标左键选择({7})区段', val: '{17}' }, + // { deviceType: '03', orderNum: 4, operateCode: '1044', tip: '鼠标左键点击【确定】按钮' }, + // { deviceType: '03', orderNum: 5, operateCode: '1042', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Block', + // skinCode: '06', + // trainingName: '道岔封锁({7})', + // trainingRemark: '道岔封锁功能', + // trainingType: 'Switch', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '02', orderNum: 1, operateCode: '105', tip: '鼠标右键菜单选择【道岔封锁】' }, + // { deviceType: '02', orderNum: 2, operateCode: '105', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Unblock', + // skinCode: '06', + // trainingName: '道岔解封({7})', + // trainingRemark: '道岔解封功能', + // trainingType: 'Switch', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '106', tip: '鼠标右键菜单选择【道岔解封】' }, + // { deviceType: '03', orderNum: 2, operateCode: '1063', tip: '鼠标左键点击【确定】按钮' }, + // { deviceType: '03', orderNum: 3, operateCode: '1066', tip: '鼠标左键选择({7})区段', val: '{17}' }, + // { deviceType: '03', orderNum: 4, operateCode: '1064', tip: '鼠标左键点击【确定】按钮' }, + // { deviceType: '03', orderNum: 5, operateCode: '1062', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Set_Limit_Speed', + // skinCode: '06', + // trainingName: '设置临时限速({7})', + // trainingRemark: '设置临时限速功能(限速值:10)', + // trainingType: 'Switch', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '02', orderNum: 1, operateCode: '113', tip: '鼠标右键菜单选择【设置临时限速】' }, + // { deviceType: '02', orderNum: 2, operateCode: '1136', tip: '鼠标左键选择【限速值5】', val: '10' }, + // { deviceType: '02', orderNum: 3, operateCode: '1131', tip: '鼠标左键点击【下达】按钮' }, + // { deviceType: '02', orderNum: 4, operateCode: '1132', tip: '鼠标左键点击【确认】按钮' }, + // { deviceType: '02', orderNum: 5, operateCode: '1133', tip: '鼠标左键点击【确认1】按钮' }, + // { deviceType: '02', orderNum: 6, operateCode: '1134', tip: '鼠标左键点击【确认2】按钮', val: '10' }, + // { deviceType: '02', orderNum: 7, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Switch_Set_Limit_Speed', + // skinCode: '06', + // trainingName: '设置临时限速({7})', + // trainingRemark: '设置临时限速功能-取消临时限速(限速值:不限速)', + // trainingType: 'Switch', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '02', orderNum: 1, operateCode: '113', tip: '鼠标右键菜单选择【设置临时限速】' }, + // { deviceType: '02', orderNum: 2, operateCode: '1136', tip: '鼠标左键选择【限速值: 不限】', val: '0' }, + // { deviceType: '02', orderNum: 3, operateCode: '1131', tip: '鼠标左键点击【下达】按钮' }, + // { deviceType: '02', orderNum: 4, operateCode: '1132', tip: '鼠标左键点击【确认】按钮' }, + // { deviceType: '02', orderNum: 5, operateCode: '1133', tip: '鼠标左键点击【确认1】按钮' }, + // { deviceType: '02', orderNum: 6, operateCode: '1134', tip: '鼠标左键点击【确认2】按钮', val: '0' }, + // { deviceType: '02', orderNum: 7, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Set_Route', + // skinCode: '06', + // trainingName: '排列进路({3})', + // trainingRemark: '排列进路', + // trainingType: 'Signal', + // productTypes: ['01', '02'], + // 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: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Cancel_Route', + // skinCode: '06', + // trainingName: '取消进路({3})', + // trainingRemark: '取消进路', + // trainingType: 'Signal', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '303', tip: '鼠标右键菜单选择【取消进路】' }, + // { deviceType: '04', orderNum: 2, operateCode: '303', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 8, + // minDuration: 5, + // operateType: 'Signal_Reopen_Signal', + // skinCode: '06', + // trainingName: '信号重开({3} 进路)', + // trainingRemark: '信号重开功能', + // trainingType: 'Signal', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '304', tip: '鼠标右键菜单选择【信号重开】' }, + // { deviceType: '04', orderNum: 2, operateCode: '304', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Open_Auto_Setting', + // skinCode: '06', + // trainingName: '进路交自动控({5})', + // trainingRemark: '进路交自动控', + // trainingType: 'Signal', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '315', tip: '鼠标右键菜单选择【进路交自动控】' }, + // { deviceType: '04', orderNum: 2, operateCode: '3151', tip: '鼠标左键选择【{3}】进路', val: '{4}' }, + // { deviceType: '04', orderNum: 3, operateCode: '315', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Close_Auto_Setting', + // skinCode: '06', + // trainingName: '进路交人工控({5})', + // trainingRemark: '进路交人工控', + // trainingType: 'Signal', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '314', tip: '鼠标右键菜单选择【进路交人工控】' }, + // { deviceType: '04', orderNum: 2, operateCode: '3141', tip: '鼠标左键选择【{3}】进路', val: '{4}' }, + // { deviceType: '04', orderNum: 3, operateCode: '314', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Set_CI_Auto', + // skinCode: '06', + // trainingName: '设置通过模式({5})', + // trainingRemark: '设置通过模式', + // trainingType: 'Signal', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '309', tip: '鼠标右键菜单选择【设置通过模式】' }, + // { deviceType: '04', orderNum: 2, operateCode: '309', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Set_CI_Auto', + // skinCode: '06', + // trainingName: 'Fleet进路办理({5})', + // trainingRemark: 'Fleet进路办理', + // trainingType: 'Signal', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '309', tip: '鼠标右键菜单选择【Fleet进路办理】' }, + // { deviceType: '04', orderNum: 2, operateCode: '309', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Cancel_CI_Auto', + // skinCode: '06', + // trainingName: '取消通过模式({5})', + // trainingRemark: '取消通过模式', + // trainingType: 'Signal', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '310', tip: '鼠标右键菜单选择【取消通过模式】' }, + // { deviceType: '04', orderNum: 2, operateCode: '310', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Cancel_CI_Auto', + // skinCode: '06', + // trainingName: 'Fleet进路取消({5})', + // trainingRemark: 'Fleet进路取消', + // trainingType: 'Signal', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '310', tip: '鼠标右键菜单选择【Fleet进路取消】' }, + // { deviceType: '04', orderNum: 2, operateCode: '310', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Cancel_Guide', + // skinCode: '06', + // trainingName: '人工解锁进路({5})', + // trainingRemark: '人工解锁进路', + // trainingType: 'Signal', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '318', tip: '鼠标右键菜单选择【人工解锁进路】' }, + // { deviceType: '04', orderNum: 2, operateCode: '318', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Set_Guide', + // skinCode: '06', + // trainingName: '信号机引导办理({5})', + // trainingRemark: '信号机引导办理', + // trainingType: 'Signal', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '308', tip: '鼠标右键菜单选择【信号机引导办理】' }, + // { deviceType: '04', orderNum: 2, operateCode: '308', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Block', + // skinCode: '06', + // trainingName: '信号封锁({5})', + // trainingRemark: '信号封锁', + // trainingType: 'Signal', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '306', tip: '鼠标右键菜单选择【信号封锁】' }, + // { deviceType: '04', orderNum: 2, operateCode: '306', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Unblock', + // skinCode: '06', + // trainingName: '信号解封({5})', + // trainingRemark: '信号解封功能', + // trainingType: 'Signal', + // productTypes: ['01'], + // stepVOList: [ + // { deviceType: '03', orderNum: 1, operateCode: '307', tip: '鼠标右键菜单选择【信号解封】' }, + // { deviceType: '03', orderNum: 2, operateCode: '3073', tip: '鼠标左键点击【确定】按钮' }, + // { deviceType: '03', orderNum: 3, operateCode: '3076', tip: '鼠标左键选择({5})区段', val: '{6}' }, + // { deviceType: '03', orderNum: 4, operateCode: '3074', tip: '鼠标左键点击【确定】按钮' }, + // { deviceType: '03', orderNum: 5, operateCode: '3072', tip: '鼠标左键点击【关闭】按钮' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Find_Routes_Status', + // skinCode: '06', + // trainingName: '查询进路控制状态({5})', + // trainingRemark: '查询进路控制状态', + // trainingType: 'Signal', + // productTypes: ['01', '02'], + // stepVOList: [ + // { deviceType: '04', orderNum: 1, operateCode: '316', tip: '鼠标右键菜单选择【查询进路控制状态】' }, + // { deviceType: '04', orderNum: 2, operateCode: '316', tip: '鼠标左键点击【确定】按钮' } + // ] + // }, + + // { + // maxDuration: 20, + // minDuration: 15, + // operateType: 'CM_Apply_For_Center_Control', + // skinCode: '06', + // trainingName: '请求遥控({1})', + // trainingRemark: '控制权限转换,站控转中控', + // trainingType: 'ControlConvertMenu', + // productTypes: ['02'], // 行调请求中控 + // stepVOList: [ + // { deviceType: 'button', orderNum: 1, operateCode: '204', tip: '鼠标右键菜单选择【请求遥控】'}, + // { deviceType: '05', orderNum: 2, operateCode: '2043', tip: '鼠标左键点击【应用】' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'CM_Apply_For_Station_Control', + // skinCode: '06', + // trainingName: '请求站控({1})', + // trainingRemark: '控制权限转换,中控转站控', + // trainingType: 'ControlConvertMenu', + // productTypes: ['01'], // 现地请求站控 + // stepVOList: [ + // { deviceType: 'button', orderNum: 1, operateCode: '202', tip: '鼠标右键菜单选择【请求站控】'}, + // { deviceType: '05', orderNum: 2, operateCode: '2023', tip: '鼠标左键点击【应用】' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Set_Auto_Turn_Back', + // skinCode: '06', + // trainingName: '设置自动折返进路({3})', + // trainingRemark: '设置自动折返进路', + // trainingType: 'Signal', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '05', orderNum: 1, operateCode: '900', tip: '鼠标右键菜单选择【设置自动折返】'}, + // { deviceType: '05', orderNum: 2, operateCode: '900', tip: '鼠标左键点击【应用】' } + // ] + // }, + // { + // maxDuration: 15, + // minDuration: 8, + // operateType: 'Signal_Cancel_Auto_Turn_Back', + // skinCode: '06', + // trainingName: ' 取消自动折返进路({3})', + // trainingRemark: ' 取消自动折返进路', + // trainingType: 'Signal', + // productTypes: ['02'], + // stepVOList: [ + // { deviceType: '05', orderNum: 1, operateCode: '901', tip: '鼠标右键菜单选择【取消自动折返】'}, + // { deviceType: '05', orderNum: 2, operateCode: '901', tip: '鼠标左键点击【应用】' } + // ] + // } + + { maxDuration: 8, minDuration: 5, - operateType: 'Stand_Set_Hold_Train', - skinCode: '06', - trainingName: '扣车({10}-{12} 站台)', - trainingRemark: '设置扣车功能', - trainingType: 'Stand', - productTypes: ['01', '02'], // 产品类型 01 现地 02 行调 - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '504', tip: '鼠标右键菜单选择【扣车】' }, - { deviceType: '06', orderNum: 2, operateCode: '504', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 8, - minDuration: 5, - operateType: 'Stand_Cancel_Hold_Train', - skinCode: '06', - trainingName: '取消扣车({10}-{12} 站台)', - trainingRemark: '取消扣车功能', - trainingType: 'Stand', - productTypes: ['01', '02'], // 产品类型 01 现地 02 行调 - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '505', tip: '鼠标右键菜单选择【取消扣车】' }, - { deviceType: '06', orderNum: 2, operateCode: '505', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 8, - minDuration: 5, - operateType: 'Stand_Set_Hold_Train_Batch', - skinCode: '06', - trainingName: '批量扣车({10}-{12} 站台)', - trainingRemark: '批量扣车功能', - trainingType: 'Stand', - productTypes: ['02'], // 产品类型 01 现地 02 行调 - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '515', tip: '鼠标右键菜单选择【批量扣车】' }, - { deviceType: '06', orderNum: 2, operateCode: '515', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 8, - minDuration: 5, - operateType: 'Stand_Cancel_Hold_Train_Batch', - skinCode: '06', - trainingName: '取消批量扣车({10}-{12} 站台)', - trainingRemark: '取消批量扣车功能', - trainingType: 'Stand', - productTypes: ['02'], // 产品类型 01 现地 02 行调 - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '516', tip: '鼠标右键菜单选择【取消批量扣车】' }, - { deviceType: '06', orderNum: 2, operateCode: '516', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Stand_Early_Depart', - skinCode: '06', - trainingName: '提前发车({10}-{12}站台)', - trainingRemark: '提前发车功能', - trainingType: 'Stand', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '501', tip: '鼠标右键菜单选择【提前发车】' }, - { deviceType: '06', orderNum: 2, operateCode: '501', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Stand_Set_Jump_Stop', - skinCode: '06', - trainingName: '设置跳停({10}-{12}站台)', + operateType: CMD.Stand.CMD_STAND_SET_JUMP_STOP.value, + skinCode: '12', + trainingName: '跳停({10}-{12} 站台)', trainingRemark: '设置跳停功能', trainingType: 'Stand', - productTypes: ['02'], + productTypes: ['01', '02'], stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '502', tip: '鼠标右键菜单选择【设置跳停】' }, - { deviceType: '06', orderNum: 2, operateCode: '502', tip: '鼠标左键点击【确定】按钮' } + { deviceType: 'bar', orderNum: 1, operateCode: OperationEvent.Command.commandNingBo.line.operation, tip: '鼠标右键菜单选择【线路】' }, + { deviceType: 'bar', orderNum: 2, operateCode: OperationEvent.Command.commandNingBo.line_stand.operation, tip: '鼠标右键菜单选择【站台】' }, + { deviceType: 'bar', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_stand_openOrClose.operation, tip: '鼠标右键菜单选择【开放/关闭】' } + // { deviceType: '02', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_stand_openOrClose.operation, tip: '鼠标右键菜单选择【开放/关闭】' } ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Stand_Cancel_Jump_Stop', - skinCode: '06', - trainingName: '取消跳停({10}-{12}站台)', + }, + { + maxDuration: 8, + minDuration: 5, + operateType: CMD.Stand.CMD_STAND_CANCEL_JUMP_STOP.value, + skinCode: '12', + trainingName: '取消跳停({10}-{12} 站台)', trainingRemark: '设置取消跳停功能', trainingType: 'Stand', - productTypes: ['02'], + productTypes: ['01', '02'], stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '503', tip: '鼠标右键菜单选择【取消跳停】' }, - { deviceType: '06', orderNum: 2, operateCode: '503', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Stand_Set_Park_Time', - skinCode: '06', - trainingName: '设置停站时间({10}-{12}站台)', - trainingRemark: '设置停站时间(自动, 一直有效)', - 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: '鼠标左键点击【确认】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Stand_Set_Park_Time', - skinCode: '06', - trainingName: '设置停站时间({10}-{12}站台)', - trainingRemark: '设置停站时间(人工, 20秒, 一直有效)', - 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: '鼠标左键点击【确认】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Stand_Set_Park_Time', - skinCode: '06', - trainingName: '设置停站时间({10}-{12}站台)', - trainingRemark: '设置停站时间(人工, 20秒, 一次有效)', - 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: '5093', tip: '鼠标左键点击,选择【一次有效】', val: 'false' }, - { deviceType: '06', orderNum: 5, operateCode: '509', tip: '鼠标左键点击【确认】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Stand_Set_Run_Time', - skinCode: '06', - trainingName: '设置运行等级({10}-{12} 站台)', - trainingRemark: '设置运行等级(设置区间 运行等级1,运行时间为115,一直有效)', - trainingType: 'Stand', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '510', tip: '鼠标右键菜单选择【设置运行等级】' }, - { deviceType: '06', orderNum: 2, operateCode: '5104', tip: '鼠标左键点击,选择【1】', val: '1' }, - { deviceType: '06', orderNum: 3, operateCode: '5101', tip: '鼠标左键点击,选择【115】', val: '115' }, - { deviceType: '06', orderNum: 4, operateCode: '5103', tip: '鼠标左键点击,选择【一直有效】', val: 'true' }, - { deviceType: '06', orderNum: 5, operateCode: '510', tip: '鼠标左键点击【确认】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Stand_Set_Run_Time', - skinCode: '06', - trainingName: '设置运行等级({10}-{12} 站台)', - trainingRemark: '设置运行等级(设置区间 运行等级自动,一直有效)', - trainingType: 'Stand', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '510', tip: '鼠标右键菜单选择【设置运行等级】' }, - { deviceType: '06', orderNum: 2, operateCode: '5104', tip: '鼠标左键点击,选择【自动】', val: '0' }, - { deviceType: '06', orderNum: 3, operateCode: '5103', tip: '鼠标左键点击,选择【一直有效】', val: 'true' }, - { deviceType: '06', orderNum: 4, operateCode: '510', tip: '鼠标左键点击【确认】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Stand_Set_Hold_Train_Auto', - skinCode: '06', - trainingName: '区间列车数量限制({10}-{12}站台)', - trainingRemark: '区间列车数量限制', - trainingType: 'Stand', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '517', tip: '鼠标右键菜单选择【区间列车数量限制】' }, - { deviceType: '06', orderNum: 2, operateCode: '517', tip: '鼠标左键点击【确认】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Stand_Cancel_Hold_Train_Auto', - skinCode: '06', - trainingName: '取消区间列车数量限制({10}-{12}站台)', - trainingRemark: '取消区间列车数量限制', - trainingType: 'Stand', - productTypes: ['02'], - stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '518', tip: '鼠标右键菜单选择【取消区间列车数量限制】' }, - { deviceType: '06', orderNum: 2, operateCode: '518', tip: '鼠标左键点击【确认】按钮' } - ] - }, - { + { deviceType: 'bar', orderNum: 1, operateCode: OperationEvent.Command.commandNingBo.line.operation, tip: '鼠标右键菜单选择【线路】' }, + { deviceType: 'bar', orderNum: 2, operateCode: OperationEvent.Command.commandNingBo.line_stand.operation, tip: '鼠标右键菜单选择【站台】' }, + { deviceType: 'bar', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_stand_openOrClose.operation, tip: '鼠标右键菜单选择【开放/关闭】' } + ] + }, + { maxDuration: 8, minDuration: 5, - operateType: 'Stand_View_Status', - skinCode: '06', - trainingName: '站台详细信息({10}-{12}站台)', - trainingRemark: '站台详细信息功能', + operateType: CMD.Stand.CMD_STAND_SET_HOLD_TRAIN.value, + skinCode: '12', + trainingName: '设置扣车({10}-{12} 站台)', + trainingRemark: '设置扣车功能', trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ - { deviceType: '06', orderNum: 1, operateCode: '507', tip: '鼠标右键菜单选择【站台详细信息】' }, - { deviceType: '06', orderNum: 2, operateCode: '0012', tip: '鼠标左键点击【确定】按钮' } - ] - }, - - { - maxDuration: 15, - minDuration: 8, - operateType: 'Section_Fault_Unlock', - skinCode: '06', - trainingName: '区段故障解锁({8}{9})', - trainingRemark: '区段故障解锁', - trainingType: 'Section', - productTypes: ['01'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '402', tip: '鼠标右键菜单选择【区段故障解锁】' }, - { deviceType: '03', orderNum: 2, operateCode: '4024', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '03', orderNum: 3, operateCode: '4028', tip: '鼠标左键选择({8}{9})区段', val: '{19}' }, - { deviceType: '03', orderNum: 4, operateCode: '4025', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '03', orderNum: 5, operateCode: '4023', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Section_Cut_Off', - skinCode: '06', - trainingName: '区段跟踪切除({8}{9})', - trainingRemark: '区段跟踪切除', - trainingType: 'Section', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '405', tip: '鼠标右键菜单选择【区段跟踪切除】' }, - { deviceType: '03', orderNum: 2, operateCode: '405', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Section_Active', - skinCode: '06', - trainingName: '区段跟踪激活({8}{9})', - trainingRemark: '区段跟踪激活功能', - trainingType: 'Section', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '406', tip: '鼠标右键菜单选择【区段跟踪激活】' }, - { deviceType: '03', orderNum: 2, operateCode: '406', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Section_Set_Limit_Speed', - skinCode: '06', - trainingName: '设置临时限速({8}{9})', - trainingRemark: '设置临时限速功能(限速值:5)', - trainingType: 'Section', - productTypes: ['02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '407', tip: '鼠标右键菜单选择【设置临时限速】' }, - { deviceType: '03', orderNum: 2, operateCode: '4076', tip: '鼠标左键选择【限速值5】', val: '5' }, - { deviceType: '03', orderNum: 3, operateCode: '4071', tip: '鼠标左键点击【下达】按钮' }, - { deviceType: '03', orderNum: 4, operateCode: '4072', tip: '鼠标左键点击【确认】按钮' }, - { deviceType: '03', orderNum: 5, operateCode: '4073', tip: '鼠标左键点击【确认1】按钮' }, - { deviceType: '03', orderNum: 6, operateCode: '4074', tip: '鼠标左键点击【确认2】按钮', val: '5' }, - { deviceType: '03', orderNum: 7, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Section_Set_Limit_Speed', - skinCode: '06', - trainingName: '设置临时限速({8}{9})', - trainingRemark: '设置临时限速功能-取消临时限速(限速值:不限速)', - trainingType: 'Section', - productTypes: ['02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '407', tip: '鼠标右键菜单选择【设置临时限速】' }, - { deviceType: '03', orderNum: 2, operateCode: '4076', tip: '鼠标左键选择【不限速】', val: '0' }, - { deviceType: '03', orderNum: 3, operateCode: '4071', tip: '鼠标左键点击【下达】按钮' }, - { deviceType: '03', orderNum: 4, operateCode: '4072', tip: '鼠标左键点击【确认】按钮' }, - { deviceType: '03', orderNum: 5, operateCode: '4073', tip: '鼠标左键点击【确认1】按钮' }, - { deviceType: '03', orderNum: 6, operateCode: '4074', tip: '鼠标左键点击【确认2】按钮', val: '0' }, - { deviceType: '03', orderNum: 7, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Section_Block', - skinCode: '06', - trainingName: '区段封锁({8}{9})', - trainingRemark: '区段封锁功能', - trainingType: 'Section', - productTypes: ['01'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '403', tip: '鼠标右键菜单选择【区段封锁】' }, - { deviceType: '03', orderNum: 2, operateCode: '403', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Section_Unblock', - skinCode: '06', - trainingName: '区段解封({8}{9})', - trainingRemark: '区段解封功能', - trainingType: 'Section', - productTypes: ['01'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '404', tip: '鼠标右键菜单选择【区段解封】' }, - { deviceType: '03', orderNum: 2, operateCode: '4043', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '03', orderNum: 3, operateCode: '4046', tip: '鼠标左键选择({8}{9})区段', val: '{19}' }, - { deviceType: '03', orderNum: 4, operateCode: '4044', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '03', orderNum: 5, operateCode: '4042', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Section_Confirm_Axis_Valid', - skinCode: '06', - trainingName: '确认计轴有效({8}{9})', - trainingRemark: '确认计轴有效功能', - trainingType: 'Section', - productTypes: ['02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '412', tip: '鼠标右键菜单选择【确认计轴有效】' }, - { deviceType: '03', orderNum: 2, operateCode: '4123', tip: '鼠标左键选择【确认】' }, - { deviceType: '03', orderNum: 3, operateCode: '4121', tip: '鼠标左键选择{20}', val: '{22}' }, - { deviceType: '03', orderNum: 4, operateCode: '4122', tip: '鼠标左键选择({8}{9})', val: '{19}' }, - { deviceType: '03', orderNum: 5, operateCode: '4124', tip: '鼠标左键点击【确认】按钮' }, - { deviceType: '03', orderNum: 6, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Normal_Position', - skinCode: '06', - trainingName: '定操({7})', - trainingRemark: '定操({7})', - trainingType: 'Switch', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '101', tip: '鼠标左键菜单选择【定操】' }, - { deviceType: '02', orderNum: 2, operateCode: '101', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Reverse_Position', // 0313 新增定位字典 - skinCode: '06', - trainingName: '反操({7})', - trainingRemark: '反操({7})', - trainingType: 'Switch', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '102', tip: '鼠标右键菜单选择【反操】' }, - { deviceType: '02', orderNum: 2, operateCode: '102', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Cut_Off', - skinCode: '06', - trainingName: '区段切除({7})', - trainingRemark: '区段切除', - trainingType: 'Switch', - productTypes: ['02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '111', tip: '鼠标右键菜单选择【区段切除】' }, - { deviceType: '02', orderNum: 2, operateCode: '111', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Active', - skinCode: '06', - trainingName: '区段激活({7})', - trainingRemark: '区段激活功能', - trainingType: 'Switch', - productTypes: ['02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '112', tip: '鼠标右键菜单选择【区段激活】' }, - { deviceType: '02', orderNum: 2, operateCode: '112', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Confirm_Axis_Valid', - skinCode: '06', - trainingName: '确认计轴有效({8}{9})', - trainingRemark: '确认计轴有效功能', - trainingType: 'Switch', - productTypes: ['02'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '412', tip: '鼠标右键菜单选择【确认计轴有效】' }, - { deviceType: '03', orderNum: 2, operateCode: '4123', tip: '鼠标左键选择【确认】' }, - { deviceType: '03', orderNum: 3, operateCode: '4121', tip: '鼠标左键选择{21}', val: '{23}' }, - { deviceType: '03', orderNum: 4, operateCode: '4122', tip: '鼠标左键选择({25})', val: '{24}' }, - { deviceType: '03', orderNum: 5, operateCode: '4124', tip: '鼠标左键点击【确认】按钮' }, - { deviceType: '03', orderNum: 6, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Single_Lock', - skinCode: '06', - trainingName: '道岔单锁({7})', - trainingRemark: '道岔单锁功能', - trainingType: 'Switch', - productTypes: ['01'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '103', tip: '鼠标右键菜单选择【道岔单锁】' }, - { deviceType: '02', orderNum: 2, operateCode: '103', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Single_Unlock', - skinCode: '06', - trainingName: '道岔单解({7})', - trainingRemark: '道岔单解功能', - trainingType: 'Switch', - productTypes: ['01'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '104', tip: '鼠标右键菜单选择【道岔单解】' }, - { deviceType: '03', orderNum: 2, operateCode: '1043', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '03', orderNum: 3, operateCode: '1046', tip: '鼠标左键选择({7})区段', val: '{17}' }, - { deviceType: '03', orderNum: 4, operateCode: '1044', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '03', orderNum: 5, operateCode: '1042', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Block', - skinCode: '06', - trainingName: '道岔封锁({7})', - trainingRemark: '道岔封锁功能', - trainingType: 'Switch', - productTypes: ['01'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '105', tip: '鼠标右键菜单选择【道岔封锁】' }, - { deviceType: '02', orderNum: 2, operateCode: '105', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Unblock', - skinCode: '06', - trainingName: '道岔解封({7})', - trainingRemark: '道岔解封功能', - trainingType: 'Switch', - productTypes: ['01'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '106', tip: '鼠标右键菜单选择【道岔解封】' }, - { deviceType: '03', orderNum: 2, operateCode: '1063', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '03', orderNum: 3, operateCode: '1066', tip: '鼠标左键选择({7})区段', val: '{17}' }, - { deviceType: '03', orderNum: 4, operateCode: '1064', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '03', orderNum: 5, operateCode: '1062', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Set_Limit_Speed', - skinCode: '06', - trainingName: '设置临时限速({7})', - trainingRemark: '设置临时限速功能(限速值:10)', - trainingType: 'Switch', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '113', tip: '鼠标右键菜单选择【设置临时限速】' }, - { deviceType: '02', orderNum: 2, operateCode: '1136', tip: '鼠标左键选择【限速值5】', val: '10' }, - { deviceType: '02', orderNum: 3, operateCode: '1131', tip: '鼠标左键点击【下达】按钮' }, - { deviceType: '02', orderNum: 4, operateCode: '1132', tip: '鼠标左键点击【确认】按钮' }, - { deviceType: '02', orderNum: 5, operateCode: '1133', tip: '鼠标左键点击【确认1】按钮' }, - { deviceType: '02', orderNum: 6, operateCode: '1134', tip: '鼠标左键点击【确认2】按钮', val: '10' }, - { deviceType: '02', orderNum: 7, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Switch_Set_Limit_Speed', - skinCode: '06', - trainingName: '设置临时限速({7})', - trainingRemark: '设置临时限速功能-取消临时限速(限速值:不限速)', - trainingType: 'Switch', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '02', orderNum: 1, operateCode: '113', tip: '鼠标右键菜单选择【设置临时限速】' }, - { deviceType: '02', orderNum: 2, operateCode: '1136', tip: '鼠标左键选择【限速值: 不限】', val: '0' }, - { deviceType: '02', orderNum: 3, operateCode: '1131', tip: '鼠标左键点击【下达】按钮' }, - { deviceType: '02', orderNum: 4, operateCode: '1132', tip: '鼠标左键点击【确认】按钮' }, - { deviceType: '02', orderNum: 5, operateCode: '1133', tip: '鼠标左键点击【确认1】按钮' }, - { deviceType: '02', orderNum: 6, operateCode: '1134', tip: '鼠标左键点击【确认2】按钮', val: '0' }, - { deviceType: '02', orderNum: 7, operateCode: '001', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Set_Route', - skinCode: '06', - trainingName: '排列进路({3})', - trainingRemark: '排列进路', - trainingType: 'Signal', - productTypes: ['01', '02'], - 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: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Cancel_Route', - skinCode: '06', - trainingName: '取消进路({3})', - trainingRemark: '取消进路', - trainingType: 'Signal', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '303', tip: '鼠标右键菜单选择【取消进路】' }, - { deviceType: '04', orderNum: 2, operateCode: '303', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { + { deviceType: 'bar', orderNum: 1, operateCode: OperationEvent.Command.commandNingBo.line.operation, tip: '鼠标右键菜单选择【线路】' }, + { deviceType: 'bar', orderNum: 2, operateCode: OperationEvent.Command.commandNingBo.line_stand.operation, tip: '鼠标右键菜单选择【站台】' }, + { deviceType: 'bar', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_stand_holdOrNot.operation, tip: '鼠标右键菜单选择【设置/取消扣车】' } + ] + }, + { maxDuration: 8, minDuration: 5, - operateType: 'Signal_Reopen_Signal', - skinCode: '06', - trainingName: '信号重开({3} 进路)', - trainingRemark: '信号重开功能', - trainingType: 'Signal', + operateType: CMD.Stand.CMD_STAND_CANCEL_HOLD_TRAIN.value, + skinCode: '12', + trainingName: '取消扣车({10}-{12} 站台)', + trainingRemark: '设置取消扣车功能', + trainingType: 'Stand', productTypes: ['01', '02'], stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '304', tip: '鼠标右键菜单选择【信号重开】' }, - { deviceType: '04', orderNum: 2, operateCode: '304', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { + { deviceType: 'bar', orderNum: 1, operateCode: OperationEvent.Command.commandNingBo.line.operation, tip: '鼠标右键菜单选择【线路】' }, + { deviceType: 'bar', orderNum: 2, operateCode: OperationEvent.Command.commandNingBo.line_stand.operation, tip: '鼠标右键菜单选择【站台】' }, + { deviceType: 'bar', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_stand_holdOrNot.operation, tip: '鼠标右键菜单选择【设置/取消扣车】' } + ] + }, + { maxDuration: 15, minDuration: 8, - operateType: 'Signal_Open_Auto_Setting', - skinCode: '06', - trainingName: '进路交自动控({5})', - trainingRemark: '进路交自动控', - trainingType: 'Signal', + operateType: CMD.Switch.CMD_SWITCH_NORMAL_POSITION.value, + skinCode: '12', + trainingName: '道岔反位({7})', + trainingRemark: '道岔定位操作({7})', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '315', tip: '鼠标右键菜单选择【进路交自动控】' }, - { deviceType: '04', orderNum: 2, operateCode: '3151', tip: '鼠标左键选择【{3}】进路', val: '{4}' }, - { deviceType: '04', orderNum: 3, operateCode: '315', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { + { deviceType: 'bar', orderNum: 1, operateCode: OperationEvent.Command.commandNingBo.line.operation, tip: '鼠标右键菜单选择【线路】' }, + { deviceType: 'bar', orderNum: 2, operateCode: OperationEvent.Command.commandNingBo.line_switch.operation, tip: '鼠标右键菜单选择【道岔】' }, + { deviceType: 'bar', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_switch_cmd.operation, tip: '鼠标右键菜单选择【命令】' } + ] + }, + { maxDuration: 15, minDuration: 8, - operateType: 'Signal_Close_Auto_Setting', - skinCode: '06', - trainingName: '进路交人工控({5})', - trainingRemark: '进路交人工控', - trainingType: 'Signal', + operateType: CMD.Switch.CMD_SWITCH_REVERSE_POSITION.value, + skinCode: '12', + trainingName: '道岔反位({7})', + trainingRemark: '道岔反位操作({7})', + trainingType: 'Switch', productTypes: ['01', '02'], stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '314', tip: '鼠标右键菜单选择【进路交人工控】' }, - { deviceType: '04', orderNum: 2, operateCode: '3141', tip: '鼠标左键选择【{3}】进路', val: '{4}' }, - { deviceType: '04', orderNum: 3, operateCode: '314', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Set_CI_Auto', - skinCode: '06', - trainingName: '设置通过模式({5})', - trainingRemark: '设置通过模式', - trainingType: 'Signal', - productTypes: ['02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '309', tip: '鼠标右键菜单选择【设置通过模式】' }, - { deviceType: '04', orderNum: 2, operateCode: '309', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Set_CI_Auto', - skinCode: '06', - trainingName: 'Fleet进路办理({5})', - trainingRemark: 'Fleet进路办理', - trainingType: 'Signal', - productTypes: ['01'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '309', tip: '鼠标右键菜单选择【Fleet进路办理】' }, - { deviceType: '04', orderNum: 2, operateCode: '309', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Cancel_CI_Auto', - skinCode: '06', - trainingName: '取消通过模式({5})', - trainingRemark: '取消通过模式', - trainingType: 'Signal', - productTypes: ['02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '310', tip: '鼠标右键菜单选择【取消通过模式】' }, - { deviceType: '04', orderNum: 2, operateCode: '310', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Cancel_CI_Auto', - skinCode: '06', - trainingName: 'Fleet进路取消({5})', - trainingRemark: 'Fleet进路取消', - trainingType: 'Signal', - productTypes: ['01'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '310', tip: '鼠标右键菜单选择【Fleet进路取消】' }, - { deviceType: '04', orderNum: 2, operateCode: '310', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Cancel_Guide', - skinCode: '06', - trainingName: '人工解锁进路({5})', - trainingRemark: '人工解锁进路', - trainingType: 'Signal', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '318', tip: '鼠标右键菜单选择【人工解锁进路】' }, - { deviceType: '04', orderNum: 2, operateCode: '318', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Set_Guide', - skinCode: '06', - trainingName: '信号机引导办理({5})', - trainingRemark: '信号机引导办理', - trainingType: 'Signal', - productTypes: ['01'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '308', tip: '鼠标右键菜单选择【信号机引导办理】' }, - { deviceType: '04', orderNum: 2, operateCode: '308', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Block', - skinCode: '06', - trainingName: '信号封锁({5})', - trainingRemark: '信号封锁', - trainingType: 'Signal', - productTypes: ['01'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '306', tip: '鼠标右键菜单选择【信号封锁】' }, - { deviceType: '04', orderNum: 2, operateCode: '306', tip: '鼠标左键点击【确定】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Unblock', - skinCode: '06', - trainingName: '信号解封({5})', - trainingRemark: '信号解封功能', - trainingType: 'Signal', - productTypes: ['01'], - stepVOList: [ - { deviceType: '03', orderNum: 1, operateCode: '307', tip: '鼠标右键菜单选择【信号解封】' }, - { deviceType: '03', orderNum: 2, operateCode: '3073', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '03', orderNum: 3, operateCode: '3076', tip: '鼠标左键选择({5})区段', val: '{6}' }, - { deviceType: '03', orderNum: 4, operateCode: '3074', tip: '鼠标左键点击【确定】按钮' }, - { deviceType: '03', orderNum: 5, operateCode: '3072', tip: '鼠标左键点击【关闭】按钮' } - ] - }, - { - maxDuration: 15, - minDuration: 8, - operateType: 'Signal_Find_Routes_Status', - skinCode: '06', - trainingName: '查询进路控制状态({5})', - trainingRemark: '查询进路控制状态', - trainingType: 'Signal', - productTypes: ['01', '02'], - stepVOList: [ - { deviceType: '04', orderNum: 1, operateCode: '316', tip: '鼠标右键菜单选择【查询进路控制状态】' }, - { deviceType: '04', orderNum: 2, operateCode: '316', tip: '鼠标左键点击【确定】按钮' } - ] - }, + { deviceType: 'bar', orderNum: 1, operateCode: OperationEvent.Command.commandNingBo.line.operation, tip: '鼠标右键菜单选择【线路】' }, + { deviceType: 'bar', orderNum: 2, operateCode: OperationEvent.Command.commandNingBo.line_switch.operation, tip: '鼠标右键菜单选择【道岔】' }, + { deviceType: 'bar', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_switch_cmd.operation, tip: '鼠标右键菜单选择【命令】' } + ] + }, - { - maxDuration: 20, - minDuration: 15, - operateType: 'CM_Apply_For_Center_Control', - skinCode: '06', - trainingName: '请求遥控({1})', - trainingRemark: '控制权限转换,站控转中控', - trainingType: 'ControlConvertMenu', - productTypes: ['02'], // 行调请求中控 - stepVOList: [ - { deviceType: 'button', orderNum: 1, operateCode: '204', tip: '鼠标右键菜单选择【请求遥控】'}, - { deviceType: '05', orderNum: 2, operateCode: '2043', tip: '鼠标左键点击【应用】' } - ] - }, - { + { + maxDuration: 15, + minDuration: 8, + operateType: CMD.Signal.CMD_SIGNAL_ROUTE_GUIDE.value, + skinCode: '12', + trainingName: '信号机引导({3})', + trainingRemark: '信号机引导', + trainingType: 'Signal', + productTypes: ['01', '02'], + stepVOList: [ + { deviceType: 'bar', orderNum: 1, operateCode: OperationEvent.Command.commandNingBo.line.operation, tip: '鼠标右键菜单选择【线路】' }, + { deviceType: 'bar', orderNum: 2, operateCode: OperationEvent.Command.commandNingBo.line_signal.operation, tip: '鼠标右键菜单选择【信号机】' }, + { deviceType: 'bar', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_signal_guide.operation, tip: '鼠标右键菜单选择【引导】' } + ] + }, + { maxDuration: 15, minDuration: 8, - operateType: 'CM_Apply_For_Station_Control', - skinCode: '06', - trainingName: '请求站控({1})', - trainingRemark: '控制权限转换,中控转站控', - trainingType: 'ControlConvertMenu', - productTypes: ['01'], // 现地请求站控 + operateType: CMD.Section.CMD_SECTION_UNBLOCK.value, + skinCode: '12', + trainingName: '区段开放({8}{9})', + trainingRemark: '区段开放', + trainingType: 'Section', + productTypes: ['01', '02'], stepVOList: [ - { deviceType: 'button', orderNum: 1, operateCode: '202', tip: '鼠标右键菜单选择【请求站控】'}, - { deviceType: '05', orderNum: 2, operateCode: '2023', tip: '鼠标左键点击【应用】' } + { deviceType: 'bar', orderNum: 1, operateCode: OperationEvent.Command.commandNingBo.line.operation, tip: '鼠标右键菜单选择【线路】' }, + { deviceType: 'bar', orderNum: 2, operateCode: OperationEvent.Command.commandNingBo.line_section.operation, tip: '鼠标右键菜单选择【轨道】' }, + { deviceType: 'bar', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_section_open.operation, tip: '鼠标右键菜单选择【开放】' } ] }, - { + { maxDuration: 15, minDuration: 8, - operateType: 'Signal_Set_Auto_Turn_Back', - skinCode: '06', - trainingName: '设置自动折返进路({3})', - trainingRemark: '设置自动折返进路', - trainingType: 'Signal', - productTypes: ['02'], + operateType: CMD.Section.CMD_SECTION_BLOCK.value, + skinCode: '12', + trainingName: '区段关闭({8}{9})', + trainingRemark: '区段关闭', + trainingType: 'Section', + productTypes: ['01', '02'], stepVOList: [ - { deviceType: '05', orderNum: 1, operateCode: '900', tip: '鼠标右键菜单选择【设置自动折返】'}, - { deviceType: '05', orderNum: 2, operateCode: '900', tip: '鼠标左键点击【应用】' } + { deviceType: 'bar', orderNum: 1, operateCode: OperationEvent.Command.commandNingBo.line.operation, tip: '鼠标右键菜单选择【线路】' }, + { deviceType: 'bar', orderNum: 2, operateCode: OperationEvent.Command.commandNingBo.line_section.operation, tip: '鼠标右键菜单选择【轨道】' }, + { deviceType: 'bar', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_section_close.operation, tip: '鼠标右键菜单选择【关闭】' } ] - }, - { + }, + { maxDuration: 15, minDuration: 8, - operateType: 'Signal_Cancel_Auto_Turn_Back', - skinCode: '06', - trainingName: ' 取消自动折返进路({3})', - trainingRemark: ' 取消自动折返进路', - trainingType: 'Signal', - productTypes: ['02'], + operateType: CMD.Section.CMD_SECTION_SET_LIMIT_SPEED.value, + skinCode: '12', + trainingName: '区段临时限速({8}{9})', + trainingRemark: '区段临时限速', + trainingType: 'Section', + productTypes: ['01', '02'], stepVOList: [ - { deviceType: '05', orderNum: 1, operateCode: '901', tip: '鼠标右键菜单选择【取消自动折返】'}, - { deviceType: '05', orderNum: 2, operateCode: '901', tip: '鼠标左键点击【应用】' } + { deviceType: 'bar', orderNum: 1, operateCode: OperationEvent.Command.commandNingBo.line.operation, tip: '鼠标右键菜单选择【线路】' }, + { deviceType: 'bar', orderNum: 2, operateCode: OperationEvent.Command.commandNingBo.line_section.operation, tip: '鼠标右键菜单选择【轨道】' }, + { deviceType: 'bar', orderNum: 3, operateCode: OperationEvent.Command.commandNingBo.line_section_limitSpeed.operation, tip: '鼠标右键菜单选择【临时限速】' } ] } ] diff --git a/src/jmapNew/theme/xian_02/menus/menuStation.vue b/src/jmapNew/theme/xian_02/menus/menuStation.vue index 640188801..ba373508f 100644 --- a/src/jmapNew/theme/xian_02/menus/menuStation.vue +++ b/src/jmapNew/theme/xian_02/menus/menuStation.vue @@ -363,7 +363,7 @@ export default { }, setStationControl() { // 请求站控 - commitOperate(menuOperate.StationControl.requestStationControl, {stationCodes:[this.selected.code]}, 0).then(({valid, operate})=>{ + commitOperate(menuOperate.StationControl.requestStationControl, {stationCode:this.selected.code}, 0).then(({valid, operate})=>{ if (valid) { this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); this.$store.dispatch('menuOperation/pushRequestList', { @@ -377,7 +377,7 @@ export default { }, setCenterControl() { // 请求中控 - commitOperate(menuOperate.StationControl.requestCentralControl, {stationCodes:[this.selected.code]}, 0).then(({valid, operate})=>{ + commitOperate(menuOperate.StationControl.requestCentralControl, {stationCode:this.selected.code}, 0).then(({valid, operate})=>{ if (valid) { this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); this.$store.dispatch('menuOperation/pushRequestList', { @@ -391,7 +391,7 @@ export default { }, setEmergencyControl() { // 紧急站控 - commitOperate(menuOperate.StationControl.emergencyStationControl, {stationCodes:[this.selected.code]}, 0).then(({valid, operate})=>{ + commitOperate(menuOperate.StationControl.emergencyStationControl, {stationCode:this.selected.code}, 0).then(({valid, operate})=>{ if (valid) { this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); this.$store.dispatch('menuOperation/pushRequestList', {