diff --git a/src/views/ebiz/sale/InsuranceInformation.vue b/src/views/ebiz/sale/InsuranceInformation.vue index 48b90d5f5..3a7020e9d 100644 --- a/src/views/ebiz/sale/InsuranceInformation.vue +++ b/src/views/ebiz/sale/InsuranceInformation.vue @@ -249,19 +249,40 @@ export default { let url = '' if (that.changeCard) { url = 'SignatureConfirmation' + this.$jump({ + flag: 'h5', + extra: { + url: location.origin + '/#/sale/SignatureConfirmation' + }, + routerInfo: { + path: + '/sale/signatureConfirmation?orderNo=' + + localStorage.orderNo + + '&token=' + + localStorage.token + + '&saleInsuredInfo=' + + localStorage.saleInsuredInfo + + '&saleInsuredPersonInfo=' + + localStorage.saleInsuredPersonInfo + + '&relationToAppnt=' + + JSON.parse(window.localStorage.getItem('saleInsuredPersonInfo')).relationToAppnt + + '&signInvalid=' + + sessionStorage.getItem('signInvalid') + + '&airSign=1' + } + }) } else { url = this.productCode == 'GFRS_M0003' ? 'productTip' : 'insuranceTip' + this.$jump({ + flag: 'h5', + extra: { + url: location.origin + '/#/sale/' + url + }, + routerInfo: { + path: '/sale/' + url + } + }) } - - this.$jump({ - flag: 'h5', - extra: { - url: location.origin + '/#/sale/' + url - }, - routerInfo: { - path: '/sale/' + url - } - }) } else { that.$toast(res.resultMessage) }