From bc292d5d4c607ef77dbe60bd532acc2579d41449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9A=AE=E4=BC=9F?= Date: Thu, 26 Dec 2019 12:13:52 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E3=80=90IMP=E3=80=91=E6=9B=B4=E6=94=B9?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E8=BF=9B=E5=85=A5=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/List.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/ebiz/sale/List.vue b/src/views/ebiz/sale/List.vue index 64644c84a..1eb9a4c86 100644 --- a/src/views/ebiz/sale/List.vue +++ b/src/views/ebiz/sale/List.vue @@ -332,8 +332,10 @@ export default { //投保单详情 goDetail(order) { window.localStorage.setItem('detailJump', '') - if (order.insuredDTOs[0].riskDTOLst[0]) { - localStorage.setItem('productCode', order.insuredDTOs[0].riskDTOLst[0].mainRiskCode) + if (order.insuredDTOs[0]) { + if (order.insuredDTOs[0].riskDTOLst[0]) { + localStorage.setItem('productCode', order.insuredDTOs[0].riskDTOLst[0].mainRiskCode) + } } let orderStatus = order.orderInfoDTO.orderStatus let orderNo = order.orderInfoDTO.orderNo From 0fbf38ecef818ed40fd341762dc819c37ef8838c Mon Sep 17 00:00:00 2001 From: wangmingzhe Date: Thu, 26 Dec 2019 13:30:02 +0800 Subject: [PATCH 2/2] =?UTF-8?q?[FIX]=20=E4=BF=AE=E6=94=B9=E5=BB=BA?= =?UTF-8?q?=E8=AE=AE=E4=B9=A6=E5=B1=95=E7=A4=BA=E7=AC=AC=E4=BA=8C=E6=AC=BE?= =?UTF-8?q?=E4=BA=A7=E5=93=81=E4=BF=9D=E8=B4=B9=E5=8F=8A=E5=B9=B4=E9=99=90?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E9=94=99=E8=AF=AF=E9=97=AE=E9=A2=98=EF=BC=8C?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=A4=E6=AC=BE=E4=BA=A7=E5=93=81=E7=BB=84?= =?UTF-8?q?=E5=90=88=E4=B8=8D=E8=83=BD=E8=BD=AC=E6=8A=95=E4=BF=9D=E9=97=AE?= =?UTF-8?q?=E9=A2=98=EF=BC=8C=E4=BF=AE=E6=94=B9=E6=B7=BB=E5=8A=A0=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E6=8C=89=E9=92=AE=E6=98=BE=E7=A4=BA=E9=9A=90=E8=97=8F?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/common/CalculatePremium.vue | 2 +- src/views/ebiz/common/MainRiskList.vue | 1 + src/views/ebiz/common/SelectedProduct.vue | 53 ++++++++++++++-------- src/views/ebiz/proposal/Exhibition.vue | 7 ++- src/views/ebiz/proposal/List.vue | 6 ++- 5 files changed, 48 insertions(+), 21 deletions(-) diff --git a/src/views/ebiz/common/CalculatePremium.vue b/src/views/ebiz/common/CalculatePremium.vue index 5435010ee..28fcfa9b9 100644 --- a/src/views/ebiz/common/CalculatePremium.vue +++ b/src/views/ebiz/common/CalculatePremium.vue @@ -675,7 +675,7 @@ export default { trialInfo['payEndYear'] = '1000' trialInfo['payEndYearFlag'] = 'Y' // 福宝宝和万能险传A - if (item.mainRiskCode != 'GFRS_M0006' && item.mainRiskCode != 'GFRS_M0003') { + if (item.mainRiskCode != 'GFRS_M0006' && item.mainRiskCode != 'GFRS_M0003' && item.mainRiskCode != 'GFRS_M0013') { trialInfo['insuYearFlag'] = 'Y' } } diff --git a/src/views/ebiz/common/MainRiskList.vue b/src/views/ebiz/common/MainRiskList.vue index ff228dcf7..f6b453256 100644 --- a/src/views/ebiz/common/MainRiskList.vue +++ b/src/views/ebiz/common/MainRiskList.vue @@ -81,6 +81,7 @@ export default { }, //下一步 nextStep() { + console.log(this.result) if (!this.result) { this.$toast('请选择产品') return diff --git a/src/views/ebiz/common/SelectedProduct.vue b/src/views/ebiz/common/SelectedProduct.vue index a09450f7d..f27cd1be3 100644 --- a/src/views/ebiz/common/SelectedProduct.vue +++ b/src/views/ebiz/common/SelectedProduct.vue @@ -1,26 +1,24 @@