修改实训报错问题
This commit is contained in:
parent
623f8968b7
commit
7f63638c0e
@ -345,7 +345,7 @@ export default {
|
||||
// 判断 信号机所在区段的 左右关联区段 是否有锁闭
|
||||
const sectionLeft = this.$store.getters['map/getDeviceByCode'](sectionModel.leftSectionCode);
|
||||
const sectionRight = this.$store.getters['map/getDeviceByCode'](sectionModel.rightSectionCode);
|
||||
if (sectionLeft.routeLock || sectionRight.routeLock) {
|
||||
if ((sectionLeft && sectionLeft.routeLock) || (sectionRight && sectionRight.routeLock)) {
|
||||
isArrangementRoute = true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user