From d7c097141de308bfe94d33c8cc1854d7c74cbdac Mon Sep 17 00:00:00 2001 From: "bai.jinyan" Date: Mon, 24 May 2021 11:56:50 +0800 Subject: [PATCH] =?UTF-8?q?GFRS-2468=20=E7=89=B9=E5=AE=9A=E7=96=BE?= =?UTF-8?q?=E7=97=85=E9=99=A9-=E5=81=A5=E5=BA=B7=E5=91=8A=E7=9F=A5?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BF=AE=E6=94=B9-=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E4=BA=BA=EF=BC=9A=E7=99=BD=E9=87=91=E5=B2=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/NotifyingMessage.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/views/ebiz/sale/NotifyingMessage.vue b/src/views/ebiz/sale/NotifyingMessage.vue index 31469ffca..68724b94e 100644 --- a/src/views/ebiz/sale/NotifyingMessage.vue +++ b/src/views/ebiz/sale/NotifyingMessage.vue @@ -24,8 +24,8 @@
- - {{isSpecificMedicalInsurance?impartTypeNumber[im.impartType]: + + {{isSpecificMedicalInsurance?impartTypeNumber['13']: relationToAppnt == '1' ? '投保人/被保险人' + impartTypeNumber[im.impartType] @@ -237,6 +237,10 @@ export default { .toString(36) .substr(2) i.show = false + // 13-特定疾病险 被保人健康告知 第一题 换行展示 回显 + if (insuredPersionImpartDTO.impartType == '13') { + i.impartContent = this.replaceNToBr(i.impartContent) + } if (i.impartAnswer == '0') { i.show = true } else { @@ -735,7 +739,7 @@ export default { return str; }, replaceBrToNull(str){ - if(str!=null) str = str.replace(//g,"") + if(str!=null) str = str.replace(//g,"\n") return str; } },