From 8e17c4dd9bfe582b89be99027701b27e04153a33 Mon Sep 17 00:00:00 2001 From: "tian.guangyuan" Date: Tue, 24 Mar 2020 10:53:05 +0800 Subject: [PATCH] =?UTF-8?q?[fix]=20=E4=BF=AE=E5=A4=8D=20GFRS-807=20[?= =?UTF-8?q?=E5=BB=BA=E8=AE=AE=E4=B9=A6]=E9=80=89=E6=8B=A9=E8=A2=AB?= =?UTF-8?q?=E4=BF=9D=E9=99=A9=E4=BA=BA=E4=B8=BA=E2=80=9C=E6=9C=AC=E4=BA=BA?= =?UTF-8?q?=E2=80=9D=E6=97=B6=EF=BC=8C=E2=80=9C=E8=A2=AB=E4=BF=9D=E9=99=A9?= =?UTF-8?q?=E4=BA=BA=E4=BF=A1=E6=81=AF=E2=80=9D=E9=A1=B5=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=BD=95=E5=85=A5=E8=AF=A5=E5=AE=A2=E6=88=B7=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=EF=BC=88=E2=80=9C=E8=B4=BE=E8=AF=A9=20=E6=97=A0=E2=80=9D?= =?UTF-8?q?=EF=BC=89=E3=80=82=20=E5=9B=A0=E4=B8=8D=E5=BD=93=E6=93=8D?= =?UTF-8?q?=E4=BD=9ClocalStorage.orderNo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/proposal/Appnt.vue | 4 ++-- src/views/ebiz/proposal/InsuredPerson.vue | 14 +++++++++++--- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/src/views/ebiz/proposal/Appnt.vue b/src/views/ebiz/proposal/Appnt.vue index 60b5baab2..3ec1d8bc7 100644 --- a/src/views/ebiz/proposal/Appnt.vue +++ b/src/views/ebiz/proposal/Appnt.vue @@ -214,8 +214,8 @@ export default { } saveProposal(params).then(res => { if (res.result == '0') { - // localStorage.orderNo = res.content.orderNo - localStorage.orderNo = JSON.stringify(this.appntDTO) + localStorage.orderNo = res.content.orderNo + localStorage.orderNoSocialSecurity = this.appntDTO.socialSecurity this.$jump({ flag: 'h5', extra: { diff --git a/src/views/ebiz/proposal/InsuredPerson.vue b/src/views/ebiz/proposal/InsuredPerson.vue index ce3fd53f5..5b2d4f9c6 100644 --- a/src/views/ebiz/proposal/InsuredPerson.vue +++ b/src/views/ebiz/proposal/InsuredPerson.vue @@ -50,13 +50,21 @@ v-validate="'required'" placeholder="被保险人职业" /> - +
- + 下一步 @@ -147,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 = JSON.parse(localStorage.orderNo).socialSecurity + this.insured.medical = localStorage.orderNoSocialSecurity } this.ageShow = this.insured.age == '-1' ? '0' : this.insured.age },