mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-24 16:02:52 +08:00
[FIX]理赔申请时,证件截止日期选择为长期,点击下一步按钮,提示证件截止日期不能为空bug
This commit is contained in:
@@ -59,8 +59,6 @@
|
||||
|
||||
<FieldDatePicter
|
||||
:v-validate="{ required: certiexpiredateRequired }"
|
||||
required
|
||||
v-validate="'required'"
|
||||
label="证件截止日期"
|
||||
name="证件截止日期"
|
||||
:defaultDate="new Date()"
|
||||
@@ -416,7 +414,7 @@ export default {
|
||||
this.userInfo.insuredProvince = Detail[0][0].province //联系省
|
||||
this.userInfo.insuredCity = Detail[0][0].city //联系市
|
||||
this.userInfo.insuredCounty = Detail[0][0].area //联系区
|
||||
this.effectiveDateType = Detail[0][0].isEndDate == '9999-01-01' //是否长期
|
||||
this.effectiveDateType = Detail[0][0].isEndDate == '9999-01-01' ? true : false //是否长期
|
||||
this.userInfo.certiTypeEndDate = Detail[0][0].isEndDate == '9999-01-01' ? '2010-01-01' : Detail[0][0].isEndDate //截止日期
|
||||
this.userInfo.insuredOccuCode = Detail[0][0].occuCode //职业编码
|
||||
let result = this.showOccuName(Detail[0][0].occuCode)
|
||||
|
||||
Reference in New Issue
Block a user