【建议书优化需求】被保人姓名和手机号出生日期年龄变化时提示信息变化

This commit is contained in:
lyt
2023-04-28 18:15:30 +08:00
parent fbfeed8676
commit 882ed4c098

View File

@@ -371,13 +371,15 @@ export default {
//表示从产品列表返回
//先进行比对 当前信息是否有更改 如果更改
let locaInsured = JSON.parse(this.$CacheUtils.getLocItem('saleInsuredPersonInfo'))
let { name, sex, birthday, occupationCode, medical } = this.insured
let { name, sex, birthday, occupationCode, medical,insuredAge,mobile} = this.insured
if (
// locaInsured.name == name &&
locaInsured.name == name &&
locaInsured.sex == sex &&
locaInsured.birthday == birthday &&
locaInsured.occupationCode == occupationCode &&
locaInsured.medical == medical
locaInsured.medical == medical &&
locaInsured.insuredAge == insuredAge &&
locaInsured.mobile == mobile
) {
this.mainPath()
} else {