哈尔滨线路 站台实训调整

This commit is contained in:
joylink_cuiweidong 2020-08-24 16:42:05 +08:00
parent e4a13de455
commit ea1955cf34
3 changed files with 80 additions and 4 deletions

View File

@ -493,10 +493,10 @@ export default {
// { name: '', cmdType: CMD.Station.CMD_STATION_CLOSE_ALLSIGNAL, operate: OperationEvent.Station.closeAllSignal.menu, show: false } // { name: '', cmdType: CMD.Station.CMD_STATION_CLOSE_ALLSIGNAL, operate: OperationEvent.Station.closeAllSignal.menu, show: false }
]; ];
this.standParamList = this.$store.state.training.prdType === '01' ? [] : [ this.standParamList = this.$store.state.training.prdType === '01' ? [] : [
{ name: '扣车', cmdType: CMD.Stand.CMD_STAND_SET_HOLD_TRAIN, operate: OperationEvent.StationStand.setDetainTrain.menu.operation, show: false }, { name: '扣车', cmdType: CMD.Stand.CMD_STAND_SET_HOLD_TRAIN, operate: OperationEvent.StationStand.setDetainTrain.menuButton, show: false },
{ name: '取消扣车', cmdType: CMD.Stand.CMD_STAND_CANCEL_HOLD_TRAIN, operate: OperationEvent.StationStand.cancelDetainTrain.menu.operation, show: false }, { name: '取消扣车', cmdType: CMD.Stand.CMD_STAND_CANCEL_HOLD_TRAIN, operate: OperationEvent.StationStand.cancelDetainTrain.menuButton, show: false },
{ name: '越站', cmdType: CMD.Stand.CMD_STAND_SET_JUMP_STOP, operate: OperationEvent.StationStand.setJumpStop.menu.operation, show: false, securityCommand: true }, { name: '越站', cmdType: CMD.Stand.CMD_STAND_SET_JUMP_STOP, operate: OperationEvent.StationStand.setJumpStop.menuButton, show: false, securityCommand: true },
{ name: '取消越站', cmdType: CMD.Stand.CMD_STAND_CANCEL_JUMP_STOP, operate: OperationEvent.StationStand.cancelJumpStop.menu.operation, show: false, securityCommand: true } { name: '取消越站', cmdType: CMD.Stand.CMD_STAND_CANCEL_JUMP_STOP, operate: OperationEvent.StationStand.cancelJumpStop.menuButton, show: false, securityCommand: true }
]; ];
}, },
initRouteMenus() { initRouteMenus() {

View File

@ -857,6 +857,66 @@ export default {
{ deviceType: '04', orderNum: 2, operateCode: '3122', tip: '鼠标左键点击【追踪单关】按钮' }, { deviceType: '04', orderNum: 2, operateCode: '3122', tip: '鼠标左键点击【追踪单关】按钮' },
{ deviceType: '04', orderNum: 3, operateCode: '008', tip: '鼠标左键点击【执行】按钮' } { deviceType: '04', orderNum: 3, operateCode: '008', tip: '鼠标左键点击【执行】按钮' }
] ]
},
{
maxDuration: 15,
minDuration: 8,
operateType: 'Stand_Set_Hold_Train',
skinCode: '07',
trainingName: '扣车({10})',
trainingRemark: '扣车',
trainingType: 'Stand',
productTypes: ['02'],
stepVOList: [
{ deviceType: '04', orderNum: 1, operateCode: 'click', tip: '鼠标左键点击选择该站台' },
{ deviceType: '04', orderNum: 2, operateCode: '5041', tip: '鼠标左键点击【扣车】按钮' },
{ deviceType: '04', orderNum: 3, operateCode: '008', tip: '鼠标左键点击【执行】按钮' }
]
},
{
maxDuration: 15,
minDuration: 8,
operateType: 'Stand_Cancel_Hold_Train',
skinCode: '07',
trainingName: '取消扣车({10})',
trainingRemark: '取消扣车',
trainingType: 'Stand',
productTypes: ['02'],
stepVOList: [
{ deviceType: '04', orderNum: 1, operateCode: 'click', tip: '鼠标左键点击选择该站台' },
{ deviceType: '04', orderNum: 2, operateCode: '5052', tip: '鼠标左键点击【取消扣车】按钮' },
{ deviceType: '04', orderNum: 3, operateCode: '008', tip: '鼠标左键点击【执行】按钮' }
]
},
{
maxDuration: 15,
minDuration: 8,
operateType: 'Stand_Set_Jump_Stop',
skinCode: '07',
trainingName: '越站({10})',
trainingRemark: '越站',
trainingType: 'Stand',
productTypes: ['02'],
stepVOList: [
{ deviceType: '04', orderNum: 1, operateCode: 'click', tip: '鼠标左键点击选择该站台' },
{ deviceType: '04', orderNum: 2, operateCode: '5025', tip: '鼠标左键点击【越站】按钮' },
{ deviceType: '04', orderNum: 3, operateCode: '008', tip: '鼠标左键点击【执行】按钮' }
]
},
{
maxDuration: 15,
minDuration: 8,
operateType: 'Stand_Cancel_Jump_Stop',
skinCode: '07',
trainingName: '取消越站({10})',
trainingRemark: '取消越站',
trainingType: 'Stand',
productTypes: ['02'],
stepVOList: [
{ deviceType: '04', orderNum: 1, operateCode: 'click', tip: '鼠标左键点击选择该站台' },
{ deviceType: '04', orderNum: 2, operateCode: '5035', tip: '鼠标左键点击【取消越站】按钮' },
{ deviceType: '04', orderNum: 3, operateCode: '008', tip: '鼠标左键点击【执行】按钮' }
]
} }
] ]
}; };

View File

@ -1475,6 +1475,10 @@ export const OperationEvent = {
otherStationStand: { otherStationStand: {
operation: '5024', operation: '5024',
domId: '_Tips-Stand-SetJumpStop-otherStationStand' domId: '_Tips-Stand-SetJumpStop-otherStationStand'
},
menuButton: {
operation: '5025',
domId: '_Tips-Stand-SetJumpStop-Menu{BOTTOM}'
} }
}, },
// 取消跳停 // 取消跳停
@ -1498,6 +1502,10 @@ export const OperationEvent = {
otherStationStand: { otherStationStand: {
operation: '5034', operation: '5034',
domId: '_Tips-Stand-CancelJumpStop-otherStationStand' domId: '_Tips-Stand-CancelJumpStop-otherStationStand'
},
menuButton: {
operation: '5035',
domId: '_Tips-Stand-CancelJumpStop-Menu{BOTTOM}'
} }
}, },
// 设置扣车 // 设置扣车
@ -1505,6 +1513,10 @@ export const OperationEvent = {
menu: { menu: {
operation: '504', operation: '504',
domId: '_Tips-Stand-SetDetainTrain-Menu' domId: '_Tips-Stand-SetDetainTrain-Menu'
},
menuButton: {
operation: '5041',
domId: '_Tips-Stand-SetDetainTrain-Menu{BOTTOM}'
} }
}, },
// 取消扣车 // 取消扣车
@ -1516,6 +1528,10 @@ export const OperationEvent = {
choose: { choose: {
operation: '5051', operation: '5051',
domId: '_Tips-Stand-cancelDetainTrain-Choose' domId: '_Tips-Stand-cancelDetainTrain-Choose'
},
menuButton: {
operation: '5052',
domId: '_Tips-Stand-CancelDetainTrain-Menu{BOTTOM}'
} }
}, },
// 强制取消扣车 // 强制取消扣车