From 12629f2fd2481bfd5dc59d37c069d98086cb337c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=B3=E5=8D=8E=E7=A5=A5?= Date: Wed, 4 Mar 2020 19:26:29 +0800 Subject: [PATCH] =?UTF-8?q?GFRS-451=E3=80=900312=E3=80=91=E7=94=B5?= =?UTF-8?q?=E6=8A=95=E6=B7=BB=E5=8A=A0=E5=8F=8C=E5=BD=95=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=20=E7=AD=BE=E5=90=8D=E8=B7=B3=E8=BD=AC=E8=B0=83=E6=95=B4=20--?= =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BA=BA=EF=BC=9A=E9=98=B3=E5=8D=8E=E7=A5=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/SignatureConfirmation.vue | 30 ++++++++++++++++--- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/src/views/ebiz/sale/SignatureConfirmation.vue b/src/views/ebiz/sale/SignatureConfirmation.vue index 353db0a03..871248762 100644 --- a/src/views/ebiz/sale/SignatureConfirmation.vue +++ b/src/views/ebiz/sale/SignatureConfirmation.vue @@ -437,7 +437,19 @@ export default { if (that.changeCard) { path = 'insuranceInformation' } else { - if (localStorage.productCode == 'GFRS_M0003' || localStorage.productCode == 'GFRS_M0015' || this.productCode == 'GFRS_M0017') { + for (let i = 0; i < that.appntSign.length; i++) { + if (that.appntSign[i].documentCode == '1' && that.appntSign[0].documentStatus == 0) { + //1投保须知 未读 + path = that.appntSign[i].routePath + break + } else { + if (that.appntSign[i].documentStatus == 2) { + path = that.appntSign[i].routePath + break + } + } + } + /* if (localStorage.productCode == 'GFRS_M0003' || localStorage.productCode == 'GFRS_M0015' || this.productCode == 'GFRS_M0017') { if (that.appntSign[0].documentStatus == 0) { path = 'insuranceInformation' } else if (that.appntSign[1].documentStatus == 2) { @@ -455,7 +467,7 @@ export default { } else if (that.appntSign[2].documentStatus == 2) { path = 'SignatureOfElectronic' } - } + }*/ } that.$jump({ flag: 'h5', @@ -786,15 +798,25 @@ export default { }, //自定义key值排序用 addKey(item) { - //ducumentCode 1投保须知 2投保单 3产品说明书 4提示书 + //ducumentCode 1投保须知 2投保单 3产品说明书 4提示书 6免除保险人责任条款说明书 7保险销售行为双录说明 if (item.documentCode == '1') { item.key = 1 + item.routePath = 'insuranceInformation' } else if (item.documentCode == '2') { - item.key = 4 + item.key = 6 + item.routePath = 'SignatureOfElectronic' } else if (item.documentCode == '3') { item.key = 2 + item.routePath = 'productTip' } else if (item.documentCode == '4') { item.key = 3 + item.routePath = 'InsuranceTip' + } else if (item.documentCode == '6') { + item.key = 4 + item.routePath = 'avoidDutyTip' + } else if (item.documentCode == '7') { + item.key = 5 + item.routePath = 'doubleRecordTip' } }, getSignInvalid() {