mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 05:46:44 +08:00
【电投受益人页面订单号参数缺失】银行卡号支持是17位的
This commit is contained in:
@@ -284,7 +284,7 @@ export default {
|
||||
if (this.transfer.card.trim() === '') {
|
||||
return this.$toast('请填写银行卡信息')
|
||||
}
|
||||
let regx = /^(\d{16}|\d{18}|\d{19})$/
|
||||
let regx = /^(\d{16}|\d{17}|\d{18}|\d{19})$/
|
||||
if (!regx.test(this.transfer.card)) {
|
||||
return this.$toast('银行卡号不符合规则')
|
||||
}
|
||||
|
||||
@@ -1099,11 +1099,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/beneficiary',
|
||||
url: location.origin + '/#/sale/beneficiary?orderNo='+this.$route.query.orderNo,
|
||||
needRefresh: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/beneficiary'
|
||||
path: '/sale/beneficiary?orderNo='+this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -193,11 +193,11 @@ export default {
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
forbidSwipeBack: '1',
|
||||
url: location.origin + `/#/sale/notifyingMessage?orderNo=`+this.$CacheUtils.getLocItem('orderNo'),
|
||||
url: location.origin + `/#/sale/notifyingMessage?orderNo=`+this.$route.query.orderNo,
|
||||
needRefresh: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: `/sale/notifyingMessage?orderNo=`+this.$CacheUtils.getLocItem('orderNo')
|
||||
path: `/sale/notifyingMessage?orderNo=`+this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -219,10 +219,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/addBeneficiaryInfo'
|
||||
url: location.origin + '/#/sale/addBeneficiaryInfo?orderNo='+this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/addBeneficiaryInfo'
|
||||
path: '/sale/addBeneficiaryInfo?orderNo='+this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user