Merge branch 'feature/GFRS-729【0326】国富人寿国富民安重大疾病保险(2020版)_1' into dev

This commit is contained in:
tian.guangyuan
2020-03-25 18:47:28 +08:00

View File

@@ -50,7 +50,7 @@
v-validate="'required'"
placeholder="被保险人职业"
/>
<select-radio class="border-bottom" :disabled="disabled" :radios="medicalRadio" label="有无社保" :value.sync="insured.medical"></select-radio>
<select-radio class="border-bottom" :radios="medicalRadio" label="有无社保" :value.sync="insured.medical"></select-radio>
<div class="border-bottom">
<van-field :readonly="disabled" :value="ageShow" @input="changeAgeInput($event)" clearable label="年龄" placeholder="被保险人年龄" />
</div>
@@ -155,7 +155,7 @@ export default {
this.disabled = true
this.insured = Object.assign(this.insured, JSON.parse(localStorage.proposalAppnt))
this.insured.age = getAge.getAge(this.insured.birthday, new Date())
this.insured.medical = localStorage.orderNoSocialSecurity
this.insured.medical = localStorage.orderNoSocialSecurity !== undefined ? localStorage.orderNoSocialSecurity : '0'
}
this.ageShow = this.insured.age == '-1' ? '0' : this.insured.age
},