From 36bb9858e5ee3993efc8dd7675746cd969ec7689 Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 12 Oct 2022 09:27:13 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A3=8E=E9=99=A9=E7=8A=B6=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/project/pingchang/AppHealthReport/ErrorInfo.vue | 13 ++++++++++++- .../pingchang/AppReturnHomeReporting/ErrorInfo.vue | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/project/pingchang/AppHealthReport/ErrorInfo.vue b/src/project/pingchang/AppHealthReport/ErrorInfo.vue index e35c625e..e267ac87 100644 --- a/src/project/pingchang/AppHealthReport/ErrorInfo.vue +++ b/src/project/pingchang/AppHealthReport/ErrorInfo.vue @@ -18,7 +18,10 @@
风险状况
-
{{$dict.getLabel('EP_registerPersonType', info.type)}}
+
+ ,{{item}} +
+
无风险
@@ -87,6 +90,14 @@ export default { if (res.code == 0) { this.info = res.data this.info.idNumberText = this.info.idNumber.replace(/(.{6}).*(.{4})/,"$1********$2") + this.info.riskDescList = [] + if(this.info.reportInfos && this.info.reportInfos.length) { + this.info.reportInfos.map((item) => { + if(item.riskDesc) { + this.info.riskDescList.push(item.riskDesc) + } + }) + } } }) }, diff --git a/src/project/pingchang/AppReturnHomeReporting/ErrorInfo.vue b/src/project/pingchang/AppReturnHomeReporting/ErrorInfo.vue index 6807ff8b..35be1c96 100644 --- a/src/project/pingchang/AppReturnHomeReporting/ErrorInfo.vue +++ b/src/project/pingchang/AppReturnHomeReporting/ErrorInfo.vue @@ -18,7 +18,7 @@
风险状况
-
{{$dict.getLabel('EP_registerPersonType', info.type)}}
+
{{info.riskDesc || '无风险'}}