Merge branch 'test' of https://git.code.tencent.com/lian-cbtc/jl-client into test
This commit is contained in:
commit
cb8d4f9f03
@ -264,3 +264,10 @@ export function getSectionListByStationCode(id, stationCode) {
|
||||
method: 'get'
|
||||
});
|
||||
}
|
||||
/** 查询地图下所有的区段 */
|
||||
export function getSectionListByMapId(id) {
|
||||
return request({
|
||||
url: `/api/map/${id}/sections`,
|
||||
method: 'get'
|
||||
});
|
||||
}
|
||||
|
@ -221,9 +221,9 @@ export function executeScriptNew(group) {
|
||||
}
|
||||
|
||||
/** 处理ibp盘事件 */
|
||||
export function handlerIbpEvent(group, button, stationCode) {
|
||||
export function handlerIbpEvent(group, button, stationCode, buttonCode) {
|
||||
return request({
|
||||
url: `/simulation/${group}/ibp/${button}?stationCode=${stationCode}`,
|
||||
url: `/simulation/${group}/ibp/${button}?stationCode=${stationCode}&buttonCode=${buttonCode}`,
|
||||
method: 'put'
|
||||
});
|
||||
}
|
||||
|
@ -495,6 +495,7 @@ export default class Station extends Group {
|
||||
this.centerControl && this.centerControl.setTextColor(this.style.Station.StationControl.text.fontColor);
|
||||
this.interconnectedControl && this.interconnectedControl.setColor(this.style.Station.StationControl.lamp.grayColor);
|
||||
this.interconnectedControl && this.interconnectedControl.setTextColor(this.style.Station.StationControl.text.fontColor);
|
||||
this.controlPreReset && this.controlPreReset.setColor(this.style.Station.StationControl.lamp.grayColor);
|
||||
|
||||
this.substationArrowsControl && this.substationArrowsControl.setColor(this.style.Station.StationControl.lamp.grayColor);
|
||||
this.emergencyArrowsControl && this.emergencyArrowsControl.setColor(this.style.Station.StationControl.lamp.grayColor);
|
||||
@ -522,6 +523,7 @@ export default class Station extends Group {
|
||||
// });
|
||||
// //
|
||||
// }
|
||||
model.preResetValidDuration && this.handlePreResetLamp();
|
||||
model.controller && this.handleComplexControl(model.controller);
|
||||
if (this.style.Station.syncCentralizeStation && (model.controlMode || model.controller) && model.centralized) {
|
||||
model.chargeStationCodeList.forEach(item => {
|
||||
@ -544,7 +546,9 @@ export default class Station extends Group {
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
handlePreResetLamp() {
|
||||
this.controlPreReset && this.controlPreReset.setColor('#f00');
|
||||
}
|
||||
handleComplexControl(controller) {
|
||||
const memberData = store.state.training.memberData;
|
||||
if (memberData[controller].userId) {
|
||||
|
@ -13,11 +13,11 @@ export default class StationTurnBack extends Group {
|
||||
this.zlevel = model.zlevel;
|
||||
this.z = 40;
|
||||
this.model = model;
|
||||
this.style = style;
|
||||
this.lineCode = lineCode;
|
||||
this.style = style;
|
||||
this.lineCode = lineCode;
|
||||
this.isShowShape = true;
|
||||
this.create();
|
||||
this.createMouseEvent();
|
||||
this.createMouseEvent();
|
||||
this.setState(model);
|
||||
this.setShowMode();
|
||||
}
|
||||
@ -75,7 +75,7 @@ export default class StationTurnBack extends Group {
|
||||
textVerticalAlign: 'bottom'
|
||||
}
|
||||
});
|
||||
this.add(this.text);
|
||||
this.add(this.text);
|
||||
}
|
||||
let turnName = '按计划执行';
|
||||
if (this.lineCode == '03') {
|
||||
@ -114,11 +114,11 @@ export default class StationTurnBack extends Group {
|
||||
}
|
||||
}
|
||||
|
||||
createMouseEvent() {
|
||||
createMouseEvent() {
|
||||
if (this.style.LcControl.mouseOverStyle) {
|
||||
this.mouseEvent = new EMouse(this);
|
||||
this.mouseEvent = new EMouse(this);
|
||||
this.add(this.mouseEvent);
|
||||
this.on('mouseout', (e) => { this.mouseEvent.mouseout(e); });
|
||||
this.on('mouseout', (e) => { this.mouseEvent.mouseout(e); });
|
||||
this.on('mouseover', (e) => { this.mouseEvent.mouseover(e); });
|
||||
}
|
||||
}
|
||||
@ -158,28 +158,28 @@ export default class StationTurnBack extends Group {
|
||||
}
|
||||
}
|
||||
|
||||
setAshShow() {
|
||||
this.control && this.control.setStyle({fill:'#FFF'});
|
||||
}
|
||||
setAshShow() {
|
||||
this.control && this.control.setStyle({fill:'#FFF'});
|
||||
}
|
||||
|
||||
// 设置状态
|
||||
setState(model, tbStrategyId = null) {
|
||||
if (!this.isShowShape) return;
|
||||
this.recover();
|
||||
this.recover();
|
||||
|
||||
// 只响应前端自定义类型的状态变化
|
||||
if (model._free) {
|
||||
this.setAshShow()
|
||||
} else {
|
||||
if (tbStrategyId) {
|
||||
model.tbStrategyId = tbStrategyId;
|
||||
model.optionList.forEach(item => {
|
||||
if (item.id == tbStrategyId) {
|
||||
this.handleStatus(item.label);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
// 只响应前端自定义类型的状态变化
|
||||
if (model._free) {
|
||||
this.setAshShow();
|
||||
} else {
|
||||
if (tbStrategyId) {
|
||||
model.tbStrategyId = tbStrategyId;
|
||||
model.optionList.forEach(item => {
|
||||
if (item.id == tbStrategyId) {
|
||||
this.handleStatus(item.label);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
getShapeTipPoint() {
|
||||
const rect = this.control.getBoundingRect();
|
||||
@ -213,7 +213,11 @@ export default class StationTurnBack extends Group {
|
||||
return this.model.position;
|
||||
}
|
||||
|
||||
getBoundingRect() {
|
||||
return this.strategyText.getBoundingRect()||this.control.getBoundingRect();
|
||||
getBoundingRect() {
|
||||
if (this.strategyText && this.strategyText.getBoundingRect()) {
|
||||
return this.strategyText.getBoundingRect();
|
||||
} else if (this.control && this.control.getBoundingRect()) {
|
||||
return this.control.getBoundingRect();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -32,7 +32,7 @@ class Theme {
|
||||
'11': 'all',
|
||||
'12': 'all',
|
||||
'13':'all',
|
||||
'14':'all'
|
||||
'14':'ecStation'
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -87,10 +87,6 @@ export default {
|
||||
initMenu() {
|
||||
// 编辑模式菜单列表
|
||||
this.menu = MenuContextHandler.covert(this.menuNormal);
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
if (this.$store.state.training.mode === TrainingMode.NORMAL) {
|
||||
const station = this.$store.getters['map/getDeviceByCode'](this.selected.stationCode);
|
||||
const memberData = this.$store.state.training.memberData;
|
||||
@ -101,6 +97,10 @@ export default {
|
||||
});
|
||||
}
|
||||
}
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
},
|
||||
doShow(point) {
|
||||
this.clickEvent();
|
||||
|
@ -184,10 +184,6 @@ export default {
|
||||
} else {
|
||||
this.menu = [];
|
||||
}
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT && this.selected.type != '04') {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
if (this.$store.state.training.mode === TrainingMode.NORMAL) {
|
||||
const station = this.$store.getters['map/getDeviceByCode'](this.selected.stationCode);
|
||||
const memberData = this.$store.state.training.memberData;
|
||||
@ -198,6 +194,10 @@ export default {
|
||||
});
|
||||
}
|
||||
}
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT && this.selected.type != '04') {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
},
|
||||
doShow(point) {
|
||||
this.clickEvent();
|
||||
|
@ -231,10 +231,6 @@ export default {
|
||||
},
|
||||
initMenu() {
|
||||
this.menu = MenuContextHandler.covert(this.menuNormal);
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
if (this.$store.state.training.mode === TrainingMode.NORMAL) {
|
||||
const station = this.$store.getters['map/getDeviceByCode'](this.selected.stationCode);
|
||||
const memberData = this.$store.state.training.memberData;
|
||||
@ -245,6 +241,10 @@ export default {
|
||||
});
|
||||
}
|
||||
}
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
},
|
||||
executeConfirm(operate) {
|
||||
if (operate.operation === OperationEvent.Signal.unlock.confirm.operation) {
|
||||
|
@ -131,10 +131,6 @@ export default {
|
||||
initMenu() {
|
||||
if (this.selected.centralized) {
|
||||
this.menu = MenuContextHandler.covert(this.menuNormal);
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
if (this.$store.state.training.mode === TrainingMode.NORMAL) {
|
||||
const memberData = this.$store.state.training.memberData;
|
||||
const userId = this.$store.state.user.id;
|
||||
@ -144,6 +140,10 @@ export default {
|
||||
});
|
||||
}
|
||||
}
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
}
|
||||
},
|
||||
doShow(point) {
|
||||
|
@ -78,10 +78,6 @@ export default {
|
||||
initMenu() {
|
||||
// 编辑模式菜单列表
|
||||
this.menu = MenuContextHandler.covert(this.menuNormal);
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
if (this.$store.state.training.mode === TrainingMode.NORMAL) {
|
||||
const memberData = this.$store.state.training.memberData;
|
||||
const userId = this.$store.state.user.id;
|
||||
@ -92,6 +88,10 @@ export default {
|
||||
});
|
||||
}
|
||||
}
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
},
|
||||
doShow(point) {
|
||||
this.clickEvent();
|
||||
|
@ -82,10 +82,6 @@ export default {
|
||||
initMenu() {
|
||||
// 编辑模式菜单列表
|
||||
this.menu = MenuContextHandler.covert(this.menuNormal);
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
this.getCurrentStateObject();
|
||||
if (this.$store.state.training.mode === TrainingMode.NORMAL) {
|
||||
const memberData = this.$store.state.training.memberData;
|
||||
@ -96,6 +92,10 @@ export default {
|
||||
});
|
||||
}
|
||||
}
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
},
|
||||
doShow(point) {
|
||||
this.clickEvent();
|
||||
|
@ -185,11 +185,6 @@ export default {
|
||||
initMenu() {
|
||||
// 编辑模式菜单列表
|
||||
this.menu = MenuContextHandler.covert(this.menuNormal);
|
||||
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
if (this.$store.state.training.mode === TrainingMode.NORMAL) {
|
||||
const station = this.$store.getters['map/getDeviceByCode'](this.selected.stationCode);
|
||||
const memberData = this.$store.state.training.memberData;
|
||||
@ -200,6 +195,10 @@ export default {
|
||||
});
|
||||
}
|
||||
}
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
},
|
||||
doShow(point) {
|
||||
this.clickEvent();
|
||||
|
@ -80,11 +80,6 @@ export default {
|
||||
initMenu() {
|
||||
// 编辑模式菜单列表
|
||||
this.menu = MenuContextHandler.covert(this.menuNormal);
|
||||
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
if (this.$store.state.training.mode === TrainingMode.NORMAL) {
|
||||
const station = this.$store.getters['map/getDeviceByCode'](this.selected.stationCode);
|
||||
const memberData = this.$store.state.training.memberData;
|
||||
@ -95,6 +90,10 @@ export default {
|
||||
});
|
||||
}
|
||||
}
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
this.menu = this.menuForce;
|
||||
}
|
||||
},
|
||||
doShow(point) {
|
||||
this.clickEvent();
|
||||
|
@ -186,6 +186,16 @@ export default {
|
||||
initMenu() {
|
||||
// 编辑模式菜单列表
|
||||
this.menu = MenuContextHandler.covert(this.menuNormal);
|
||||
if (this.$store.state.training.mode === TrainingMode.NORMAL) {
|
||||
const station = this.$store.getters['map/getDeviceByCode'](this.selected.stationCode);
|
||||
const memberData = this.$store.state.training.memberData;
|
||||
const userId = this.$store.state.user.id;
|
||||
if (!station.controller || !memberData[station.controller] || memberData[station.controller].userId != userId) {
|
||||
this.menu.forEach(item => {
|
||||
item.disabled = true;
|
||||
});
|
||||
}
|
||||
}
|
||||
// 故障模式菜单列表
|
||||
if (this.operatemode === OperateMode.FAULT) {
|
||||
// if (!this.$store.state.scriptRecord.bgSet) {
|
||||
@ -198,16 +208,6 @@ export default {
|
||||
// this.menu = this.menuForce;
|
||||
// }
|
||||
}
|
||||
if (this.$store.state.training.mode === TrainingMode.NORMAL) {
|
||||
const station = this.$store.getters['map/getDeviceByCode'](this.selected.stationCode);
|
||||
const memberData = this.$store.state.training.memberData;
|
||||
const userId = this.$store.state.user.id;
|
||||
if (!station.controller || !memberData[station.controller] || memberData[station.controller].userId != userId) {
|
||||
this.menu.forEach(item => {
|
||||
item.disabled = true;
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
doShow(point) {
|
||||
this.clickEvent();
|
||||
|
@ -119,7 +119,8 @@ export const IbpOperation = {
|
||||
XXKM: {operate: '08', event: 'XXKM', name: '下行屏蔽门开门'},
|
||||
SXKM: {operate: '10', event: 'SXKM', name: '上行屏蔽门开门'},
|
||||
XXYS: {operate: '09', event: 'XXYS', name: '下行钥匙'},
|
||||
SXYS: {operate: '11', event: 'SXYS', name: '上行钥匙'}
|
||||
SXYS: {operate: '11', event: 'SXYS', name: '上行钥匙'},
|
||||
PRERESET: {operate: '12', event: 'PRERESET', name: '计轴复位'}
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -34,6 +34,16 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item v-if="form.mean === 'PRERESET'" label="关联区段">
|
||||
<el-select v-model="form.sectionCode" placeholder="请选择">
|
||||
<el-option
|
||||
v-for="item in sectionList"
|
||||
:key="item.code"
|
||||
:label="item.name + '(' + item.code +')'"
|
||||
:value="item.code"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="onSubmit('form')">{{ buttonText }}</el-button>
|
||||
<el-button v-show="showDeleteButton" type="danger" @click="deleteDevice">{{ $t('global.delete') }}</el-button>
|
||||
@ -44,6 +54,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {getSectionListByStationCode, getSectionListByMapId } from '@/api/jmap/map';
|
||||
export default {
|
||||
name: 'ButtonDraft',
|
||||
components: {
|
||||
@ -62,14 +73,17 @@ export default {
|
||||
{ label: '取消紧急停车', value: 'QXJJTC' },
|
||||
{ label: '报警切除', value: 'BJQC' },
|
||||
{ label: '下行屏蔽门开门', value: 'XXKM' },
|
||||
{ label: '上行屏蔽门开门', value: 'SXKM' }
|
||||
{ label: '上行屏蔽门开门', value: 'SXKM' },
|
||||
{ label: '计轴复位', value: 'PRERESET' }
|
||||
],
|
||||
form: {
|
||||
code: '',
|
||||
buttonColor: 'red',
|
||||
buttonWidth: 25,
|
||||
x: 10,
|
||||
y: 10
|
||||
y: 10,
|
||||
sectionCode: '',
|
||||
mean: ''
|
||||
},
|
||||
rules: {
|
||||
code: [
|
||||
@ -81,7 +95,8 @@ export default {
|
||||
buttonWidth: [
|
||||
{ required: true, message: this.$t('ibp.enterTheButtonWidth'), trigger: 'blur' }
|
||||
]
|
||||
}
|
||||
},
|
||||
sectionList: []
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
@ -100,12 +115,31 @@ export default {
|
||||
this.form.x = model.point.x;
|
||||
this.form.y = model.point.y;
|
||||
this.form.mean = model.mean;
|
||||
this.form.sectionCode = model.sectionCode;
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
if (this.$route.query.stationCode) {
|
||||
getSectionListByStationCode(this.$route.query.mapId, this.$route.query.stationCode).then(resp => {
|
||||
this.sectionList = resp.data;
|
||||
console.log(resp.data);
|
||||
}).catch(() => {
|
||||
this.$message.error('获取区段列表失败!');
|
||||
});
|
||||
} else {
|
||||
getSectionListByMapId(this.$route.query.mapId).then(resp => {
|
||||
this.sectionList = resp.data;
|
||||
console.log(resp.data);
|
||||
}).catch(() => {
|
||||
this.$message.error('获取区段列表失败!');
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// consoleChange() {
|
||||
// console.log(this.form.mean === 'PRERESET', this.form.mean );
|
||||
// },
|
||||
onSubmit(form) {
|
||||
this.$refs[form].validate((valid) => {
|
||||
if (valid) {
|
||||
@ -119,7 +153,8 @@ export default {
|
||||
color: this.form.buttonColor,
|
||||
status: 'off',
|
||||
width: this.form.buttonWidth,
|
||||
mean: this.form.mean
|
||||
mean: this.form.mean,
|
||||
sectionCode: this.form.sectionCode
|
||||
};
|
||||
this.$emit('createData', buttonModel);
|
||||
this.initPage();
|
||||
@ -139,7 +174,8 @@ export default {
|
||||
color: this.form.buttonColor,
|
||||
status: 'off',
|
||||
width: this.form.buttonWidth,
|
||||
mean: this.form.mean
|
||||
mean: this.form.mean,
|
||||
sectionCode: this.form.sectionCode
|
||||
};
|
||||
this.$emit('deleteDataModel', buttonModel );
|
||||
this.initPage();
|
||||
@ -154,7 +190,8 @@ export default {
|
||||
buttonWidth: 25,
|
||||
x: 10,
|
||||
y: 10,
|
||||
mean: ''
|
||||
mean: '',
|
||||
sectionCode: ''
|
||||
};
|
||||
},
|
||||
generateCode() {
|
||||
|
@ -229,10 +229,12 @@ export default {
|
||||
|
||||
},
|
||||
onMouseDown(em) {
|
||||
if (em.deviceModel.mean) {
|
||||
if (IbpOperation[em.deviceModel.mean]) {
|
||||
handlerIbpEvent(this.$route.query.group, IbpOperation[em.deviceModel.mean].event, this.stationCode);
|
||||
}
|
||||
if (em.deviceModel.mean && IbpOperation[em.deviceModel.mean] && em.deviceModel.mean === IbpOperation.PRERESET.event) {
|
||||
handlerIbpEvent(this.$route.query.group, IbpOperation[em.deviceModel.mean].event, this.stationCode, em.deviceModel.sectionCode).then(() => {
|
||||
}).catch(error => { this.$message.error(error.message); });
|
||||
} else if ( em.deviceModel.mean && IbpOperation[em.deviceModel.mean]) {
|
||||
handlerIbpEvent(this.$route.query.group, IbpOperation[em.deviceModel.mean].event, this.stationCode).then(() => {
|
||||
}).catch(error => { this.$message.error(error.message); });
|
||||
}
|
||||
},
|
||||
// 右键点击事件
|
||||
|
@ -103,7 +103,8 @@ export default {
|
||||
'allowEarlyDepartureWhenHoldTrain',
|
||||
'standSkipSetTrainOnlyOnce',
|
||||
'blockadeCommandOnlyValidInStandbyMode',
|
||||
'ebwhenCancelRoute'
|
||||
'ebwhenCancelRoute',
|
||||
'stationPreResetBeforeAxlePreReset'
|
||||
],
|
||||
selectList: ['runMode'],
|
||||
generalConfig: [
|
||||
@ -137,7 +138,8 @@ export default {
|
||||
'allowEarlyDepartureWhenHoldTrain',
|
||||
'standSkipSetTrainOnlyOnce',
|
||||
'blockadeCommandOnlyValidInStandbyMode',
|
||||
'ebwhenCancelRoute'
|
||||
'ebwhenCancelRoute',
|
||||
'stationPreResetBeforeAxlePreReset'
|
||||
],
|
||||
rangeList: ['noParkingSM', 'parkingSM'],
|
||||
speedList: ['rmAtpSpeed', 'urmAtpSpeed'],
|
||||
@ -176,7 +178,8 @@ export default {
|
||||
allowEarlyDepartureWhenHoldTrain: '扣车时是否允许提前发车',
|
||||
standSkipSetTrainOnlyOnce: '站台指定列车跳停仅跳停一次',
|
||||
blockadeCommandOnlyValidInStandbyMode: '封锁命令(状态)仅在后备模式下有效',
|
||||
ebwhenCancelRoute: '取消进路时列车紧急制动'
|
||||
ebwhenCancelRoute: '取消进路时列车紧急制动',
|
||||
stationPreResetBeforeAxlePreReset: '计轴预复位前需要车站预复位'
|
||||
}
|
||||
};
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user