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 || '无风险'}}