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) {