|
|
|
@ -777,12 +777,13 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
let zdKey = "ZD_" + moudleType; //阻挡类物体特殊字段
|
|
|
|
|
|
|
|
|
|
//编辑模式下,基本信息下的设备会随时变化
|
|
|
|
|
if (moudleType == JYZInfoMoudleType.JBXX && ModeManager.currentMode == ModeType.Edit) { |
|
|
|
|
if (this.facilitysByMoudle.has(moudleType)) { |
|
|
|
|
this.facilitysByMoudle.get(moudleType).length = 0; |
|
|
|
|
if (ModeManager.currentMode == ModeType.Edit) { |
|
|
|
|
let jbxxMoudle = JYZInfoMoudleType.JBXX; |
|
|
|
|
if (this.facilitysByMoudle.has(jbxxMoudle)) { |
|
|
|
|
this.facilitysByMoudle.get(jbxxMoudle).length = 0; |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
this.facilitysByMoudle.set(moudleType, []); |
|
|
|
|
this.facilitysByMoudle.set(jbxxMoudle, []); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -794,13 +795,13 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
for (let i = 0; i < allFacilityByType.length; i++) { |
|
|
|
|
let l_facilityByType = allFacilityByType[i]; |
|
|
|
|
if (ConfigManager.getPosType(l_facilityByType.type) == FacilityPosType.Out) { |
|
|
|
|
this.facilitysByMoudle.get(moudleType).push(l_facilityByType); |
|
|
|
|
this.facilitysByMoudle.get(jbxxMoudle).push(l_facilityByType); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
else if (this.facilitysByMoudle.has(moudleType)) { |
|
|
|
|
if (this.facilitysByMoudle.has(moudleType)) { |
|
|
|
|
//已经初始化过了
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|