【电投受益人页面订单号参数缺失】银行卡号支持是17位的

This commit is contained in:
lyt
2023-04-17 16:08:02 +08:00
parent 7dcc6f2cf9
commit d99d782c37
3 changed files with 7 additions and 7 deletions

View File

@@ -284,7 +284,7 @@ export default {
if (this.transfer.card.trim() === '') { if (this.transfer.card.trim() === '') {
return this.$toast('请填写银行卡信息') 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)) { if (!regx.test(this.transfer.card)) {
return this.$toast('银行卡号不符合规则') return this.$toast('银行卡号不符合规则')
} }

View File

@@ -1099,11 +1099,11 @@ export default {
this.$jump({ this.$jump({
flag: 'h5', flag: 'h5',
extra: { extra: {
url: location.origin + '/#/sale/beneficiary', url: location.origin + '/#/sale/beneficiary?orderNo='+this.$route.query.orderNo,
needRefresh: '1' needRefresh: '1'
}, },
routerInfo: { routerInfo: {
path: '/sale/beneficiary' path: '/sale/beneficiary?orderNo='+this.$route.query.orderNo
} }
}) })
} else { } else {

View File

@@ -193,11 +193,11 @@ export default {
flag: 'h5', flag: 'h5',
extra: { extra: {
forbidSwipeBack: '1', forbidSwipeBack: '1',
url: location.origin + `/#/sale/notifyingMessage?orderNo=`+this.$CacheUtils.getLocItem('orderNo'), url: location.origin + `/#/sale/notifyingMessage?orderNo=`+this.$route.query.orderNo,
needRefresh: '1' needRefresh: '1'
}, },
routerInfo: { routerInfo: {
path: `/sale/notifyingMessage?orderNo=`+this.$CacheUtils.getLocItem('orderNo') path: `/sale/notifyingMessage?orderNo=`+this.$route.query.orderNo
} }
}) })
} else { } else {
@@ -219,10 +219,10 @@ export default {
this.$jump({ this.$jump({
flag: 'h5', flag: 'h5',
extra: { extra: {
url: location.origin + '/#/sale/addBeneficiaryInfo' url: location.origin + '/#/sale/addBeneficiaryInfo?orderNo='+this.$route.query.orderNo
}, },
routerInfo: { routerInfo: {
path: '/sale/addBeneficiaryInfo' path: '/sale/addBeneficiaryInfo?orderNo='+this.$route.query.orderNo
} }
}) })
}, },