diff --git a/src/views/ebiz/insureAgain/InsureInformation.vue b/src/views/ebiz/insureAgain/InsureInformation.vue index d992131c2..94d97b9da 100644 --- a/src/views/ebiz/insureAgain/InsureInformation.vue +++ b/src/views/ebiz/insureAgain/InsureInformation.vue @@ -554,7 +554,7 @@ export default { }) this.setCustomerMarriage(res.orderDTO.appntDTO.marriage) //是否长期 - this.userInfo.effectiveDateType = res.orderDTO.appntDTO.effectiveDateType == 'false' ? false :true; + this.userInfo.effectiveDateType = res.orderDTO.appntDTO.effectiveDateType == 'true' ? true : false //有无社保 this.userInfo.medical = res.orderDTO.appntDTO.medical @@ -574,9 +574,9 @@ export default { }) }) this.setInsuredCustomerMarriage(this.insuredPersonInfo.marriage) - + //是否长期 - this.insuredPersonInfo.effectiveDateType = res.orderDTO.insuredDTOs[0].effectiveDateType == 'false' ? false :true; + this.insuredPersonInfo.effectiveDateType = this.insuredPersonInfo.effectiveDateType == 'true' ? true : false if (this.insuredPersonInfo.homeProvince.length) { this.insuredHomeName = getAreaName([ { code: this.insuredPersonInfo.homeProvince },