From 2a41b417613e3995fa7fc7ebdf9152a183fbef69 Mon Sep 17 00:00:00 2001
From: lyt
Date: Wed, 15 Feb 2023 14:31:38 +0800
Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=85=B3=E4=BA=8E=E5=BC=80=E5=8F=91?=
=?UTF-8?q?=E6=83=A0=E6=A1=82=E4=BF=9D=E7=BB=AD=E4=BF=9D=E6=96=B0=E6=96=B9?=
=?UTF-8?q?=E6=A1=88=E7=B3=BB=E7=BB=9F=E7=9A=84=E7=94=B3=E8=AF=B7=E3=80=91?=
=?UTF-8?q?=E8=A2=AB=E4=BF=9D=E4=BA=BA=E5=BD=95=E5=85=A5=E9=A1=B5=E9=9D=A2?=
=?UTF-8?q?=E6=8A=95=E8=A2=AB=E4=B8=8D=E5=90=8C=E4=BA=BA=E6=97=B6=EF=BC=8C?=
=?UTF-8?q?=E8=A2=AB=E4=BF=9D=E4=BA=BA=E4=BF=A1=E6=81=AF=E6=97=A0=E5=AE=B6?=
=?UTF-8?q?=E5=BA=AD=E5=9C=B0=E5=9D=80=E6=97=B6=E5=90=8C=E6=8A=95=E4=BF=9D?=
=?UTF-8?q?=E4=BA=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/ebiz/cardList/GroupInsuredInfo.vue | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/views/ebiz/cardList/GroupInsuredInfo.vue b/src/views/ebiz/cardList/GroupInsuredInfo.vue
index baecf7e93..5fa95c7b4 100644
--- a/src/views/ebiz/cardList/GroupInsuredInfo.vue
+++ b/src/views/ebiz/cardList/GroupInsuredInfo.vue
@@ -1056,9 +1056,9 @@ export default {
}
this.insuredInfo.email = data.email //电子邮箱
this.insuredInfo.mobile = data.customerPhone //移动电话
- this.insuredInfo.homeProvince = data.homeProvince //家庭省
- this.insuredInfo.homeCity = data.homeCity //家庭市
- this.insuredInfo.homeArea = data.homeArea //家庭区
+ this.insuredInfo.homeProvince = data.homeProvince?data.homeProvince:this.userInfo.homeProvince//家庭省
+ this.insuredInfo.homeCity = data.homeCity?data.homeCity:this.userInfo.homeCity //家庭市
+ this.insuredInfo.homeArea = data.homeArea?data.homeArea:this.userInfo.homeArea //家庭区
if (data.homeProvince && data.homeCity && data.homeArea) {
this.insuredInfo.homeName = getAreaName([{ code: data.homeProvince }, { code: data.homeCity }, { code: data.homeArea }]) //家庭地址
}