From 615be25b751c582edab473c11fa0647accffbb21 Mon Sep 17 00:00:00 2001 From: "bai.jinyan" Date: Wed, 26 May 2021 11:58:41 +0800 Subject: [PATCH] =?UTF-8?q?GFRS-2504=20=E6=8C=87=E5=AE=9A=E7=94=9F?= =?UTF-8?q?=E6=95=88=E6=97=A5=E9=9C=80=E6=B1=82-=E9=98=85=E8=AF=BB?= =?UTF-8?q?=E6=96=87=E4=BB=B6-=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/SignatureConfirmation.vue | 3 +++ src/views/ebiz/sale/apointValidDoc.vue | 14 ++++++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/views/ebiz/sale/SignatureConfirmation.vue b/src/views/ebiz/sale/SignatureConfirmation.vue index 4b1293ce7..841219f78 100644 --- a/src/views/ebiz/sale/SignatureConfirmation.vue +++ b/src/views/ebiz/sale/SignatureConfirmation.vue @@ -1447,6 +1447,9 @@ export default { productCode = that.insured[0].riskDTOLst[0].mainRiskCode riskName = res.orderDTO.insuredDTOs[0].riskDTOLst[0].riskName } + if (that.orderInfo && that.orderInfo.activeType) { + that.$CacheUtils.setLocItem('activeType',that.orderInfo.activeType) + } localStorage.setItem('productCode', productCode) this.riskName = riskName localStorage.setItem('riskName', riskName) diff --git a/src/views/ebiz/sale/apointValidDoc.vue b/src/views/ebiz/sale/apointValidDoc.vue index 95c410a42..d8c96343d 100644 --- a/src/views/ebiz/sale/apointValidDoc.vue +++ b/src/views/ebiz/sale/apointValidDoc.vue @@ -3,12 +3,13 @@ {{ `提示:阅读时长需在${this.Time ? this.time : this.number}秒以上` }}
-

指定保单生效日说明

-

+

指定保单生效日说明

+

指定保险合同生效日说明

+

尊敬的客户,您好!以下为指定保险合同生效日重要说明,请您务必仔细阅读和确认。

- 如您于2020年12月31日(包含当日)之前申请投保并交费成功、且国富人寿保险股份有限公司(以下简称国富人寿)收取首期保险费并签发保险单,保险合同于2021年1月1日零时起生效;您交费成功日或签发保单日如在2021年1月1日(包含当日)之后,保险合同于国富人寿收取首期保险费并签发保险单次日零时起生效。 + 如您于{{ activeType=='KMH' ? '2020年12月31日':activeType=='SQY'? '2021年5月31日':'' }}(包含当日)之前申请投保并交费成功、且国富人寿保险股份有限公司(以下简称国富人寿)收取首期保险费并签发保险单,保险合同于{{ activeType=='KMH' ? '2021年1月1日':activeType=='SQY'? '2021年6月1日':'' }}零时起生效;您交费成功日或签发保单日如在{{ activeType=='KMH' ? '2021年1月1日':activeType=='SQY'? '2021年6月1日':'' }}(包含当日)之后,保险合同于国富人寿收取首期保险费并签发保险单次日零时起生效。

国富人寿承担的保险责任从保险合同生效日零时开始。 签发保险单后, 国富人寿将电子保单发送至您的电子邮箱。 @@ -59,7 +60,8 @@ export default { // 是否在微信 isWeixin, productCode: localStorage.productCode, //获取产品编号 - protocol: false + protocol: false, + activeType: '' } }, components: { @@ -77,6 +79,7 @@ export default { // {{switchFlag.Time?pageVariable.msg:pageVariable.number}} that.timeOut() document.title = '指定保单生效日说明' + that.activeType = window.localStorage.getItem('activeType') // Notify({ // type: 'warning', // message: `提示:阅读时长需在${this.Time ? this.time : this.number}秒以上`, @@ -374,4 +377,7 @@ p { top: 0; z-index: 20; } +.fontb{ + font-weight: bolder; +}