大铁项目 添加 非常站控 指令
允许自律 状态代码调整
This commit is contained in:
parent
8b2bb77c12
commit
4da6ce092d
@ -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,
|
||||
|
@ -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;
|
||||
|
@ -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: {
|
||||
|
@ -4,6 +4,7 @@
|
||||
<draw-select ref="drawSelect" />
|
||||
<set-fault ref="setFault" pop-class="chengdou-03__systerm" />
|
||||
<notice-info ref="noticeInfo" pop-class="chengdou-03__systerm" />
|
||||
<password-box ref="password" @checkOver="passWordCommit" @checkCancel="clearOperate" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -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();
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -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: '非常站控'}
|
||||
},
|
||||
|
||||
// 司机操作
|
||||
|
@ -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}'
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user