车辆段道岔操作
This commit is contained in:
parent
1efcb7491f
commit
e350ae04dc
@ -219,13 +219,18 @@ export default {
|
||||
}
|
||||
},
|
||||
operationHandler(buttonOperation, selected) {
|
||||
|
||||
switch (buttonOperation) {
|
||||
case OperationEvent.Switch.locate.button.operation: {
|
||||
//总定
|
||||
commitOperate(menuOperate.Switch.locate, { switchCode: selected.code }, 3)
|
||||
const map = new Map([
|
||||
[OperationEvent.Switch.locate.button.operation, menuOperate.Switch.locate],
|
||||
[OperationEvent.Switch.reverse.button.operation, menuOperate.Switch.reverse],
|
||||
[OperationEvent.Switch.lock.button.operation, menuOperate.Switch.lock],
|
||||
[OperationEvent.Switch.unlock.button.operation, menuOperate.Switch.unlock],
|
||||
[OperationEvent.Switch.block.button.operation, menuOperate.Switch.block],
|
||||
[OperationEvent.Switch.unblock.button.operation, menuOperate.Switch.unblock],
|
||||
])
|
||||
commitOperate(map.get(buttonOperation), { switchCode: selected.code }, 3)
|
||||
.then(({ valid }) => {
|
||||
if (valid) {
|
||||
console.log('123')
|
||||
} else {
|
||||
this.$refs.noticeInfo.doShow()
|
||||
}
|
||||
@ -234,31 +239,6 @@ export default {
|
||||
console.error(error)
|
||||
this.$refs.noticeInfo.doShow()
|
||||
})
|
||||
break
|
||||
}
|
||||
case OperationEvent.Switch.reverse.button.operation: {
|
||||
//总反
|
||||
break
|
||||
}
|
||||
case OperationEvent.Switch.lock.button.operation: {
|
||||
//单锁
|
||||
break
|
||||
}
|
||||
case OperationEvent.Switch.unlock.button.operation: {
|
||||
//单解
|
||||
break
|
||||
}
|
||||
case OperationEvent.Switch.block.button.operation: {
|
||||
//岔封
|
||||
break
|
||||
}
|
||||
case OperationEvent.Switch.unblock.button.operation: {
|
||||
//岔解
|
||||
break
|
||||
}
|
||||
default:
|
||||
break
|
||||
}
|
||||
},
|
||||
doShow(point) {
|
||||
this.initMenu()
|
||||
|
Loading…
Reference in New Issue
Block a user