diff --git a/src/jmapNew/config/skinCode/datie_02.js b/src/jmapNew/config/skinCode/datie_02.js index 0c281e886..bcc6fa50e 100644 --- a/src/jmapNew/config/skinCode/datie_02.js +++ b/src/jmapNew/config/skinCode/datie_02.js @@ -437,7 +437,9 @@ class SkinCode extends defaultStyle { selfDiscipline: { show: true, offset: { x: 0, y: 0 }, - text: '允许自律' + text: '允许自律', + defaultColor: '#7F7F7F', + lightColor: '#ff0', }, selfDisciplineControl: { show: true, diff --git a/src/jmapNew/shape/graph/Station/index.js b/src/jmapNew/shape/graph/Station/index.js index fb4395d2c..4c91004de 100644 --- a/src/jmapNew/shape/graph/Station/index.js +++ b/src/jmapNew/shape/graph/Station/index.js @@ -675,6 +675,7 @@ export default class Station extends Group { this.emergencyArrowsControl && this.emergencyArrowsControl.setColor(this.style.Station.StationControl.lamp.grayColor); this.stationControlCC && this.stationControlCC.setStyle({text:'EL', textFill:this.style.Station.StationControl.text.emergencyControlColor}); this.veryControl && this.veryControl.setColor(this.style.Station.StationControl.veryControl.defaultColor); + this.selfDiscipline && this.selfDiscipline.setColor(this.style.Station.StationControl.selfDiscipline.defaultColor); this.selfDisciplineControl && this.selfDisciplineControl.setColor(this.style.Station.StationControl.selfDisciplineControl.defaultColor); this.veryControlButton && this.veryControlButton.setStyle({ fill: this.style.Station.StationControl.veryControlButton.defaultColor }); if (this.style.Station.stationText.isSpecialType) { @@ -705,6 +706,7 @@ export default class Station extends Group { model.controller && this.handleComplexControl(model.controller); model.emergencyController != undefined && this.handleEmergencyChange(model.emergencyController); model.controlApplicant && this.handleControlApplicant(model); + model.allowAutonomy && this.handleAllowAutonomy(); if (this.style.Station.syncCentralizeStation && (model.controlMode || model.controller || model.emergencyController != undefined) && model.centralized) { model.chargeStationCodeList.forEach(item => { const device = store.getters['map/getDeviceByCode'](item); @@ -736,6 +738,10 @@ export default class Station extends Group { this.controlPreReset && this.controlPreReset.setColor('#f00'); } + handleAllowAutonomy() { + this.selfDiscipline && this.selfDiscipline.setColor(this.style.Station.StationControl.selfDiscipline.lightColor); + } + handleControlApplicant(model) { if (this.style.Station.stationText.isSpecialType) { const memberData = store.state.training.memberData; diff --git a/src/jmapNew/theme/components/utils/menuOperate.js b/src/jmapNew/theme/components/utils/menuOperate.js index 0ee4473d5..a5f912339 100644 --- a/src/jmapNew/theme/components/utils/menuOperate.js +++ b/src/jmapNew/theme/components/utils/menuOperate.js @@ -353,6 +353,11 @@ export const menuOperate = { // 设置折返策略 operation: OperationEvent.Station.setBackStrategy.menu.operation, cmdType: CMD.Station.CMD_STATION_SET_TURN_BACK_STRATEGY + }, + requestVeryControl:{ + // 非常站控 大铁线路 + operation: OperationEvent.StationControl.requestVeryControl.menu.operation, + cmdType:CMD.ControlConvertMenu.CMD_CM_SPECIAL_STATION_CONTROL } }, TrainWindow: { @@ -499,7 +504,7 @@ export const menuOperate = { } }, CTC: { - //接预 + // 接预 receivingNotice: { operation: OperationEvent.CTCCommand.receivingNotice.menu.operation, cmdType: CMD.CTC.CTC_RECEIVING_NOTICE diff --git a/src/jmapNew/theme/datie_02/menus/dialog/addSpareTrain.vue b/src/jmapNew/theme/datie_02/menus/dialog/addSpareTrain.vue index f183f818d..7a47b6c24 100644 --- a/src/jmapNew/theme/datie_02/menus/dialog/addSpareTrain.vue +++ b/src/jmapNew/theme/datie_02/menus/dialog/addSpareTrain.vue @@ -15,7 +15,7 @@ 上下行 - +
{{ messageTip1 }}
diff --git a/src/jmapNew/theme/datie_02/menus/menuStation.vue b/src/jmapNew/theme/datie_02/menus/menuStation.vue index 34cceb178..0dec74176 100644 --- a/src/jmapNew/theme/datie_02/menus/menuStation.vue +++ b/src/jmapNew/theme/datie_02/menus/menuStation.vue @@ -4,6 +4,7 @@ + @@ -17,6 +18,9 @@ import { DeviceMenu, OperateMode } from '@/scripts/ConstDic'; import SetFault from '@/jmapNew/theme/components/menus/dialog/setFault'; import {menuOperate, commitOperate} from '@/jmapNew/theme/components/utils/menuOperate'; import CMD from '@/scripts/cmdPlugin/CommandEnum'; +import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; +// import Handler from '@/scripts/cmdPlugin/Handler'; +import PasswordBox from './dialog/childDialog/passwordInputBox.vue'; export default { name: 'StationMenu', @@ -24,6 +28,7 @@ export default { PopMenu, SetFault, NoticeInfo, + PasswordBox, DrawSelect }, mixins: [ @@ -92,6 +97,13 @@ export default { } else { this.doClose(); } + }, + '$store.state.menuOperation.selectedCount': function (val) { + const selected = this.$store.state.menuOperation.selected; + const subtype = this.$store.state.menuOperation.subType; + if (subtype == 'veryControlButton' && selected._type == 'Station') { + this.veryControlClick(selected); + } } }, methods: { @@ -156,6 +168,45 @@ export default { handlerOpenPdf(elem) { const url = `https://joylink.club/oss/projects/wjls/${this.selected.jp}/${elem.file}`; window.open(url, '_blank'); + }, + // 非常站控 + veryControlClick(selected) { + // stationCode车站编号、pressDown:1按下、0抬起 + const pressDown = selected.controlMode == 'Interlock' ? 0 : 1; + commitOperate(menuOperate.StationControl.requestVeryControl, { stationCode: selected.code, pressDown:pressDown }, 0).then(({valid, operate}) => { + if (valid) { + operate.nextCmdType = CMD.ControlConvertMenu.CMD_CM_SPECIAL_STATION_CONTROL; + operate['operateNext'] = OperationEvent.Command.close.password.operation; + this.$refs.password.doShow(operate); + } + }).catch(error=>{ + console.error(error); + this.$refs.noticeInfo.doShow(); + }); + }, + clearOperate() { // 清除操作 + // Handler.clear(); // 清空操作组 + // this.$store.dispatch('menuOperation/setButtonOperation', null); + }, + // 输入密码正确回调 + passWordCommit(data) { + let operate = {}; + if (data.nextCmdType) { + operate = { + over: true, + operation: data.operation, + cmdType: data.nextCmdType, + param: data.param + }; + } + this.$store.dispatch('training/nextNew', operate).then(({ valid }) => { + if (valid) { + this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); + } + }).catch((error) => { + console.error(error); + this.$refs.noticeInfo.doShow(); + }); } } }; diff --git a/src/scripts/cmdPlugin/CommandEnum.js b/src/scripts/cmdPlugin/CommandEnum.js index 6c247a169..301f06022 100644 --- a/src/scripts/cmdPlugin/CommandEnum.js +++ b/src/scripts/cmdPlugin/CommandEnum.js @@ -66,7 +66,8 @@ export default { /** 回复中控请求(同意/拒绝) */ CMD_CM_REPLY_CENTER_CONTROL: {value:'CM_Reply_Center_Control', label: '回复中控请求'}, CMD_CM_RECEIVE_CONTROL: {value:'CM_Receive_Control', label: '接收控制'}, - CMD_CM_SURRENDER_CONTROL: {value:'CM_Surrender_Control', label: '交出控制'} + CMD_CM_SURRENDER_CONTROL: {value:'CM_Surrender_Control', label: '交出控制'}, + CMD_CM_SPECIAL_STATION_CONTROL:{value:'CM_Special_Station_Control', label: '非常站控'} }, // 司机操作 diff --git a/src/scripts/cmdPlugin/OperationHandler.js b/src/scripts/cmdPlugin/OperationHandler.js index e7d4a9681..fa99f3f2a 100644 --- a/src/scripts/cmdPlugin/OperationHandler.js +++ b/src/scripts/cmdPlugin/OperationHandler.js @@ -1293,6 +1293,17 @@ export const OperationEvent = { operation: '2054', domId: '_Tips-Control-Response-Refuse' } + }, + // 非常站控 大铁线路 + requestVeryControl:{ + menu: { + operation: '206', + domId: '_Tips-Request-Very-Control-Menu' + }, + menuButton: { + operation: '2061', + domId: '_Tips-Request-Very-Control-Menu-Button{BOTTOM}' + } } },