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; } },