From 774bfc937d31ce5e865600c9e45b80a0fa0b89a1 Mon Sep 17 00:00:00 2001 From: "liu.xiaofeng@ebiz-digits.com" Date: Thu, 25 May 2023 17:33:34 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=9B=BD=E5=AF=8C=E4=BA=BA=E5=AF=BF?= =?UTF-8?q?=E3=80=91=E5=8D=A1=E5=8D=95=E4=B8=87=E7=A6=8F=E5=8D=A1=E4=BF=9D?= =?UTF-8?q?=E9=9A=9C=E6=96=B9=E6=A1=88=E5=B9=B4=E9=BE=84=E9=99=90=E5=88=B6?= =?UTF-8?q?=E9=80=BB=E8=BE=91=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 96a18a2125cb8f743132a71e6c37848ab43a267c) --- src/views/ebiz/cardList/information.vue | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/views/ebiz/cardList/information.vue b/src/views/ebiz/cardList/information.vue index 9f0360274..df07712d4 100644 --- a/src/views/ebiz/cardList/information.vue +++ b/src/views/ebiz/cardList/information.vue @@ -2053,6 +2053,20 @@ export default { return this.$toast('被保险人的年龄不可以超过65周岁') } } + else if (this.itemProductDTOS.productCode === 'GFRS_M0071') { + console.log(this.proSchemeCode) + if (this.proSchemeCode == '068645010198') { + if (insuredAge < 10) { + return this.$toast('被保险人的年龄需要大于10岁') + } + } + if (insuredAge < 0) { + return this.$toast('被保险人的年龄需要大于28天') + } + if (insuredAge > 65) { + return this.$toast('被保险人的年龄不可以超过65周岁') + } + } //投保人需大于等于 18 周岁 // if (age < 18) {