diff --git a/src/app/pages/left-domain/left-domain.component.html b/src/app/pages/left-domain/left-domain.component.html index 457b6ae..80a3e8a 100644 --- a/src/app/pages/left-domain/left-domain.component.html +++ b/src/app/pages/left-domain/left-domain.component.html @@ -99,14 +99,14 @@

- - + +

- - + +

@@ -164,8 +164,8 @@

- - + +

diff --git a/src/app/pages/left-domain/left-domain.component.ts b/src/app/pages/left-domain/left-domain.component.ts index badf4aa..6aa4a68 100644 --- a/src/app/pages/left-domain/left-domain.component.ts +++ b/src/app/pages/left-domain/left-domain.component.ts @@ -94,6 +94,12 @@ export class LeftDomainComponent implements OnInit { window.setTimeout(()=>{ this.textInput(item) },0) + if (this.beforeFence === 2) { + item.getPropertyData().oilTankType = this.setNewData(item.getPropertyData().oilTankType) + item.getPropertyData().oilPumpType = this.setNewData(item.getPropertyData().oilPumpType) + } else if (this.beforeFence === 6) { + item.getPropertyData().VRUType_2 = this.setNewData(item.getPropertyData().VRUType_2) + } }) } if (this.beforeFence === 3) { //消防设施 @@ -122,6 +128,24 @@ export class LeftDomainComponent implements OnInit { } + //处理 油罐罐区/油气回收 select框老数据 + setNewData(e: string):string { + if(e === "scg") { + e = "双层罐" + } else if (e === "dcg") { + e = "单层罐+防渗罐池" + } else if (e === "zxb") { + e = "自吸泵" + } else if (e === "qyb") { + e = "潜油泵" + } else if (e === "fss") { + e = "分散式" + } else if (e === "jzs") { + e = "集中式" + } + return e + } + //选中 设备 selectFacility(event, item: FacilityInfoUIItem) { if (event.target.localName == 'img') {