From 1f3314f46ff679b1f88a8af56dd21e243a202b17 Mon Sep 17 00:00:00 2001 From: "liu.xiaofeng@ebiz-digits.com" Date: Tue, 5 Sep 2023 17:15:44 +0800 Subject: [PATCH] =?UTF-8?q?release=2020230904-3=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E8=AE=A1=E7=AE=97=E8=AF=81=E4=BB=B6=E6=97=A5?= =?UTF-8?q?=E6=9C=9F=E4=BB=A3=E7=A0=81=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/AddBeneficiaryInfo.vue | 2 +- src/views/ebiz/sale/InsuredPerson.vue | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/views/ebiz/sale/AddBeneficiaryInfo.vue b/src/views/ebiz/sale/AddBeneficiaryInfo.vue index 1e1e2ef0f..b68e6a379 100644 --- a/src/views/ebiz/sale/AddBeneficiaryInfo.vue +++ b/src/views/ebiz/sale/AddBeneficiaryInfo.vue @@ -1255,7 +1255,7 @@ export default { let month = date.getMonth() + 1 month = month.toString().padStart(2, '0') let day = date.getDate() - day = day.toString().padStart(2, '0') + day = Number(day.toString().padStart(2, '0')) + 1 return `${year}-${month}-${day}` }, getRelatedData(val, from) { diff --git a/src/views/ebiz/sale/InsuredPerson.vue b/src/views/ebiz/sale/InsuredPerson.vue index e498daac2..a722ff633 100644 --- a/src/views/ebiz/sale/InsuredPerson.vue +++ b/src/views/ebiz/sale/InsuredPerson.vue @@ -1837,7 +1837,7 @@ export default { let month = date.getMonth() + 1 month = month.toString().padStart(2, '0') let day = date.getDate() - day = day.toString().padStart(2, '0') + day = Number(day.toString().padStart(2, '0')) + 1 return `${year}-${month}-${day}` }, //地区选择 @@ -1885,7 +1885,6 @@ export default { } }, getRelatedData(val, from) { - // debugger if (this.userInfo.idType != '1' && this.userInfo.idType != '2') { return }