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 }]) //家庭地址 }