南京二号线

区段 添加 无数据故障
区段故障 修改 红光带/通信车占用/橙光带 为 紫光带故障/红光带故障/计轴受扰
This commit is contained in:
joylink_cuiweidong 2021-11-24 15:55:50 +08:00
parent 8fcc22cb6f
commit 776a19406e
2 changed files with 8 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class StationStand extends Group {
this.downDetainLamp && this.downDetainLamp.hide();
}
setScreenDoorOpenStatus(model) {
if (!this.model.noStatus) {
if (!this.model.noStatus && !(this.model.atsNoStatus && store.state.training.prdType == '02')) {
this.gapStand && this.gapStand.setState(model);
}
}

View File

@ -248,6 +248,13 @@ export default {
{label: '编号闪', value: 'LIGHTING_UNIT_FAULT_NAME'},
{label: '机头闪', value: 'LIGHTING_UNIT_FAULT_HEAD'}
];
} else if (selected._type === 'Section' && this.popClass === 'nanjing-02__systerm') {
this.faultList = [
{label: '紫光带故障', value: 'FAULT'},
{label: '红光带故障', value: 'CBTC_OCCUPIED_FAULT'},
{label: '计轴受扰', value: 'ARB'},
{label:'无数据故障', value:'UNABLE_COLLECT_STATUS'}
];
}
if (this.faultList && this.faultList.length) {
this.form.faultType = this.faultList[0].value;