diff --git a/src/views/ebiz/sale/InsuredInfo.vue b/src/views/ebiz/sale/InsuredInfo.vue index 3109f61aa..c8080439b 100644 --- a/src/views/ebiz/sale/InsuredInfo.vue +++ b/src/views/ebiz/sale/InsuredInfo.vue @@ -1102,7 +1102,17 @@ export default { return this.$toast('学生不可以作为投保人,请更换投保人投保') } - if (this.userInfo.workcompany.length < 6 && this.userInfo.workcompany.trim() != '无') { + // 职业 学龄前儿童 2099908, 离休人员 8000003,家庭主妇 4071203,无业人员 8000001, + // 亲,您填写的工作单位过于简短哦~ + // if ( + // this.userInfo.occupationCode == '2099908' || + // this.userInfo.occupationCode == '8000003' || + // this.userInfo.occupationCode == '4071203' || + // this.userInfo.occupationCode == '8000001' + // ) { + // } + let workcompany = this.userInfo.workcompany + if (!workcompany || (workcompany.length < 6 && workcompany.trim() != '无')) { this.userInfo.workcompany = '无' }