diff --git a/src/views/ebiz/proposal/InsuredPerson.vue b/src/views/ebiz/proposal/InsuredPerson.vue
index 5b2d4f9c6..d67441c26 100644
--- a/src/views/ebiz/proposal/InsuredPerson.vue
+++ b/src/views/ebiz/proposal/InsuredPerson.vue
@@ -50,7 +50,7 @@
v-validate="'required'"
placeholder="被保险人职业"
/>
-
+
@@ -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
},