-
楼层/区域名称: {{tableMsg.name? tableMsg.name : '暂无名称'}}
+
楼层/区域名称: {{tableMsg.name?
+ tableMsg.name : '暂无名称'}}
{{header}} |
@@ -263,7 +306,7 @@
-
+
@@ -274,17 +317,23 @@
{{item.name}}
- description
+ description
+
-
-
-
+
+
+
+
- {{radio.name}}
+ {{radio.name}}
diff --git a/src/app/plan-audit/wait-examineer/wait-examineer.component.html b/src/app/plan-audit/wait-examineer/wait-examineer.component.html
index d030830..8bda0f7 100644
--- a/src/app/plan-audit/wait-examineer/wait-examineer.component.html
+++ b/src/app/plan-audit/wait-examineer/wait-examineer.component.html
@@ -157,9 +157,9 @@
由
- {{i.oldValue}}
+ {{i.oldValue | differentContentTitle}}
变更为
- {{i.newValue}}
+ {{i.newValue | differentContentTitle}}
|
From d474f09212acdbc8c65e3ea48bfef46e25edf183 Mon Sep 17 00:00:00 2001
From: SHAOJIAHAO <55341701@qq.com>
Date: Sat, 7 Aug 2021 14:49:35 +0800
Subject: [PATCH 3/3] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E5=AE=8C=E5=96=84?=
=?UTF-8?q?=E5=B7=AE=E5=BC=82=E4=BF=A1=E6=81=AF=E5=AF=B9=E6=AF=94=E9=94=99?=
=?UTF-8?q?=E8=AF=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/app/pipes/boolean.pipe.ts | 2 ++
.../wait-examineer.component.html | 22 ++++++++++++++-----
2 files changed, 18 insertions(+), 6 deletions(-)
diff --git a/src/app/pipes/boolean.pipe.ts b/src/app/pipes/boolean.pipe.ts
index 3df03f5..025507f 100644
--- a/src/app/pipes/boolean.pipe.ts
+++ b/src/app/pipes/boolean.pipe.ts
@@ -53,6 +53,8 @@ export class differentContentTitle implements PipeTransform {
return '是'
} else if (typeof (value) == 'boolean' && !value) {
return '否'
+ } else if (JSON.stringify(value) == "{}") {
+ return '空'
} else if (!value) {
return '空'
} else {
diff --git a/src/app/plan-audit/wait-examineer/wait-examineer.component.html b/src/app/plan-audit/wait-examineer/wait-examineer.component.html
index 8bda0f7..b4435e5 100644
--- a/src/app/plan-audit/wait-examineer/wait-examineer.component.html
+++ b/src/app/plan-audit/wait-examineer/wait-examineer.component.html
@@ -155,12 +155,22 @@
-
- 由
- {{i.oldValue | differentContentTitle}}
- 变更为
- {{i.newValue | differentContentTitle}}
- |
+
+
+
+ {{i.displayName}} 发生变化
+
+ |
+
+
+
+
+ 由
+ {{i.oldValue | differentContentTitle}}
+ 变更为
+ {{i.newValue | differentContentTitle}}
+ |
+