diff --git a/src/views/ebiz/sale/AccountInformation.vue b/src/views/ebiz/sale/AccountInformation.vue index 83b3c9dff..df57fbb24 100644 --- a/src/views/ebiz/sale/AccountInformation.vue +++ b/src/views/ebiz/sale/AccountInformation.vue @@ -555,7 +555,19 @@ export default { if (res.result == '0') { this.orderInfoDTO.validateCustomerFlag = '0'; window.localStorage.setItem('accountInformationRadio', this.radio) - this.getBankCardSignState() + if(this.orderInfoDTO.activeType != 'KMH') { + this.$jump({ + flag: 'h5', + extra: { + url: location.origin + '/#/sale/attachmentManagement?orderNo=' + this.$route.query.orderNo + }, + routerInfo: { + path: '/sale/attachmentManagement?orderNo=' + this.$route.query.orderNo + } + }) + } else { + this.getBankCardSignState() + } } else { this.$toast(res.resultMessage) }