From b3fa2d12fb41bca53658e1494212428f3f091e1b Mon Sep 17 00:00:00 2001 From: hz Date: Wed, 12 Nov 2025 14:41:38 +0800 Subject: [PATCH] =?UTF-8?q?fix(ebiz):=20=E4=BF=AE=E5=A4=8D=E6=8A=95?= =?UTF-8?q?=E4=BF=9D=E4=BA=BA=E5=A7=93=E5=90=8D=E6=98=BE=E7=A4=BA=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在投保人姓名为空时显示空字符串而非undefined --- src/views/ebiz/saleFlowProImprove/AccountInformation.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/ebiz/saleFlowProImprove/AccountInformation.vue b/src/views/ebiz/saleFlowProImprove/AccountInformation.vue index 55f434c9a..5aa13dfbb 100644 --- a/src/views/ebiz/saleFlowProImprove/AccountInformation.vue +++ b/src/views/ebiz/saleFlowProImprove/AccountInformation.vue @@ -3,7 +3,7 @@
- {{ `投保人:${saleInsuredInfo.name}` }} + {{ `投保人:${saleInsuredInfo.name || ''}` }}