宁波福州佛山默认不显示道岔区段的名称调整

This commit is contained in:
joylink_cuiweidong 2020-08-31 10:13:26 +08:00
parent e6f7ade236
commit 8027bc90ae
5 changed files with 46 additions and 43 deletions

View File

@ -197,10 +197,10 @@ export default {
const sectionList = this.$store.getters['map/sectionList']; const sectionList = this.$store.getters['map/sectionList'];
if (sectionList && sectionList.length > 0) { if (sectionList && sectionList.length > 0) {
sectionList.forEach(elem => { sectionList.forEach(elem => {
if (elem.isSwitchSection && elem.parentCode) { // if (elem.switchSection && elem.parentCode) {
// // //
nameShow = false; // nameShow = false;
} else { // } else {
if (elem.type === '01') { if (elem.type === '01') {
nameShow = this.nameLevels.indexOf(11) !== -1; nameShow = this.nameLevels.indexOf(11) !== -1;
} else if (elem.type === '02') { } else if (elem.type === '02') {
@ -210,7 +210,7 @@ export default {
// //
nameShow = this.nameLevels.indexOf(9) !== -1; nameShow = this.nameLevels.indexOf(9) !== -1;
} }
} // }
// //
if (elem.isStandTrack) { if (elem.isStandTrack) {

View File

@ -197,10 +197,10 @@ export default {
if (sectionList && sectionList.length > 0) { if (sectionList && sectionList.length > 0) {
sectionList.forEach(elem => { sectionList.forEach(elem => {
elem._type = deviceType.Section; elem._type = deviceType.Section;
if (elem.isSwitchSection && elem.parentCode) { // if (elem.switchSection && elem.parentCode) {
// // //
nameShow = false; // nameShow = false;
} else { // } else {
if (elem.type === '01') { if (elem.type === '01') {
// //
nameShow = this.nameLevels.indexOf(11) !== -1; nameShow = this.nameLevels.indexOf(11) !== -1;
@ -211,7 +211,7 @@ export default {
// //
nameShow = this.nameLevels.indexOf(9) !== -1; nameShow = this.nameLevels.indexOf(9) !== -1;
} }
} // }
// //
if (elem.isStandTrack) { if (elem.isStandTrack) {

View File

@ -563,7 +563,7 @@ export default {
minDuration: 5, minDuration: 5,
operateType: 'Signal_Reopen_Signal', operateType: 'Signal_Reopen_Signal',
skinCode: '06', skinCode: '06',
trainingName: '信号重开({3} 进路)', trainingName: '信号重开({5})',
trainingRemark: '信号重开功能', trainingRemark: '信号重开功能',
trainingType: 'Signal', trainingType: 'Signal',
productTypes: ['01', '02'], productTypes: ['01', '02'],

View File

@ -199,10 +199,10 @@ export default {
if (sectionList && sectionList.length > 0) { if (sectionList && sectionList.length > 0) {
sectionList.forEach(elem => { sectionList.forEach(elem => {
elem._type = deviceType.Section; elem._type = deviceType.Section;
if (elem.isSwitchSection && elem.parentCode) { // if (elem.switchSection && elem.parentCode) {
// // //
nameShow = false; // nameShow = false;
} else { // } else {
if (elem.type === '01') { if (elem.type === '01') {
// //
nameShow = this.nameLevels.indexOf(11) !== -1; nameShow = this.nameLevels.indexOf(11) !== -1;
@ -213,7 +213,7 @@ export default {
// //
nameShow = this.nameLevels.indexOf(9) !== -1; nameShow = this.nameLevels.indexOf(9) !== -1;
} }
} // }
// //
standTrackNameShow = this.nameLevels.indexOf(2) !== -1; standTrackNameShow = this.nameLevels.indexOf(2) !== -1;

View File

@ -61,7 +61,10 @@ function queryDeleteModels(state, device, dict) {
} }
} }
copyModel.relSwitchCode = ''; copyModel.relSwitchCode = '';
// 旧版地图 判断是否道岔区段为isSwitchSection新版地图已经更换为switchSection
// 此处为了兼容旧版暂时没有删除isSwitchSection待旧版地图删除之后需要删除isSwitchSection
copyModel.isSwitchSection = false; copyModel.isSwitchSection = false;
copyModel.switchSection = false;
copyModel.type = '01'; copyModel.type = '01';
dict[elem.code] = copyModel; dict[elem.code] = copyModel;
} }