From 5bd779bd867a232032421c448c69c72fa5f2509c Mon Sep 17 00:00:00 2001
From: cpf <13562321995@163.com>
Date: Fri, 1 Apr 2022 11:32:06 +0800
Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86select=E6=A1=86=E8=80=81?=
=?UTF-8?q?=E6=95=B0=E6=8D=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../left-domain/left-domain.component.html | 12 +++++-----
.../left-domain/left-domain.component.ts | 24 +++++++++++++++++++
2 files changed, 30 insertions(+), 6 deletions(-)
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') {