diff --git a/src/views/ebiz/sale/InsuredInfo.vue b/src/views/ebiz/sale/InsuredInfo.vue index 96ce6c262..b683d9ed3 100644 --- a/src/views/ebiz/sale/InsuredInfo.vue +++ b/src/views/ebiz/sale/InsuredInfo.vue @@ -757,8 +757,8 @@ export default { if (this.userInfo.idType == '1') { this.effectiveDateTypeAble = !(age > 45) } - //年龄小于等于16周岁,工作单位默认值为‘无’ - if (age <= 16) { + //年龄18周岁,工作单位默认值为‘无’ + if (age < 18) { this.userInfo.workcompany = this.userInfo.workcompany || '无' } } @@ -1293,8 +1293,8 @@ export default { this.effectiveDateTypeAble = idToData(val).age <= 45 this.userInfo.birthday = idToData(val).birthday this.userInfo.sex = idToData(val).sex - //年龄小于等于16周岁,工作单位默认值为‘无’ - if (idToData(val).age <= 16) { + //年龄小于18周岁,工作单位默认值为‘无’ + if (idToData(val).age < 18) { this.userInfo.workcompany = this.userInfo.workcompany || '无' } if (idToData(val).age > 45) { diff --git a/src/views/ebiz/sale/InsuredPerson.vue b/src/views/ebiz/sale/InsuredPerson.vue index 89fe48056..e73387cce 100644 --- a/src/views/ebiz/sale/InsuredPerson.vue +++ b/src/views/ebiz/sale/InsuredPerson.vue @@ -82,7 +82,7 @@ :readonly="isAppnt || idLimit" > --> { if (true === valid) { // 职业 学龄前儿童 2099908, 离休人员 8000003,家庭主妇 4071203,无业人员 8000001, @@ -1567,6 +1576,7 @@ export default { // this.isRequired = true // this.idLimit = false } + this.$forceUpdate() }, //获取身份证扫描信息 getIdentityInfo(data) { @@ -1643,8 +1653,8 @@ export default { this.effectiveDateTypeAble = idToData(val).age <= 45 this.userInfo.birthday = idToData(val).birthday this.userInfo.sex = idToData(val).sex - //年龄小于等于16周岁,工作单位默认值为‘无’ - if (idToData(val).age <= 16) { + //年龄小于18周岁,工作单位默认值为‘无’ + if (idToData(val).age < 18) { this.userInfo.workcompany = this.userInfo.workcompany || '无' } if (!from) {