diff --git a/src/views/ebiz/sale/AddBeneficiaryInfo.vue b/src/views/ebiz/sale/AddBeneficiaryInfo.vue index f455c9764..00c94570a 100644 --- a/src/views/ebiz/sale/AddBeneficiaryInfo.vue +++ b/src/views/ebiz/sale/AddBeneficiaryInfo.vue @@ -586,6 +586,8 @@ export default { this.effectiveDateTypeAble = age <= 45 //数据是否从客户列表拉取 this.fromCustomer = true + + this.getRelatedData(this.userInfo.idNo) }, nextStep() { // 计算年龄 diff --git a/src/views/ebiz/sale/InsuredInfo.vue b/src/views/ebiz/sale/InsuredInfo.vue index 4022cef48..3ab5c75d4 100644 --- a/src/views/ebiz/sale/InsuredInfo.vue +++ b/src/views/ebiz/sale/InsuredInfo.vue @@ -699,6 +699,8 @@ export default { let age = utilsAge.getAge(this.userInfo.birthday, new Date()) // 长期按钮是否禁用 this.effectiveDateTypeAble = age <= 45 + + this.getRelatedData(this.userInfo.idNo) }, nextStep() { @@ -1097,6 +1099,18 @@ export default { this.countDown = 60 this.codeDisabled = false } + // watch: { + // 'userInfo.idNo': { + // handler(newName, oldName) { + // // console.log('obj.a changed'); + // if(newName != oldName) { + // this.getRelatedData(this.userInfo.idNo) + // } + // }, + // immediate: true, + // deep: true + // } + // } }