fix:新增线下支付通道
This commit is contained in:
@ -646,7 +646,7 @@ function toOpenPay(json) {
|
||||
// window.open(formatUrl)
|
||||
window.location.href = formatUrl
|
||||
payLoading.value = false
|
||||
} else if (pay_channel=='remittance') {
|
||||
} else if (pay_channel=='remittance' || pay_channel=='remittance5') {
|
||||
remittanceSign({
|
||||
qcc_language: serverLang(),
|
||||
goldInId: patams.goldInId,
|
||||
|
@ -4,8 +4,8 @@
|
||||
<div class="channel-tab"
|
||||
:class="[
|
||||
{'tab-active': item.active},
|
||||
{'channel-tab-light': (item.pay_code=='LDAgency' || item.pay_code=='htfxcashier' || item.pay_code=='htfxcashier3')},
|
||||
{'channel-tab-dark': (item.pay_code=='remittance' || item.pay_code=='remittance2' || item.pay_code=='remittance3' || item.pay_code=='remittance4' || item.pay_code=='htfxcashier2')}
|
||||
{'channel-tab-light': (item.pay_code=='LDAgency' || item.pay_code=='LDAgency2' || item.pay_code=='htfxcashier' || item.pay_code=='htfxcashier3')},
|
||||
{'channel-tab-dark': (item.pay_code=='remittance' || item.pay_code=='remittance2' || item.pay_code=='remittance3' || item.pay_code=='remittance4' || item.pay_code=='remittance5' || item.pay_code=='htfxcashier2')}
|
||||
]"
|
||||
style=""
|
||||
v-for="(item, index) in channelList" :key="index" @click="selectChannel(index)" >
|
||||
@ -15,6 +15,11 @@
|
||||
<svg-icon icon-class="remittanceIcon2" class="channel-icon" v-if="item.active && (index%2)==0" />
|
||||
<svg-icon icon-class="remittanceIcon1" class="channel-icon" v-if="!item.active" />
|
||||
</template>
|
||||
<template v-if="item.pay_code=='remittance5'">
|
||||
<svg-icon icon-class="remittanceIcon3" class="channel-icon" v-if="item.active && (index%2)!=0" />
|
||||
<svg-icon icon-class="remittanceIcon2" class="channel-icon" v-if="item.active && (index%2)==0" />
|
||||
<svg-icon icon-class="remittanceIcon1" class="channel-icon" v-if="!item.active" />
|
||||
</template>
|
||||
<template v-if="item.pay_code=='remittance2'">
|
||||
<svg-icon icon-class="remittance2Icon3" class="channel-icon" v-if="item.active && (index%2)!=0" style="left: -10px;bottom: -10px;" />
|
||||
<svg-icon icon-class="remittance2Icon2" class="channel-icon" v-if="item.active && (index%2)==0" style="left: -10px;bottom: -10px;" />
|
||||
@ -35,6 +40,11 @@
|
||||
<svg-icon icon-class="LDAgencyIcon2" class="channel-icon" v-if="item.active && (index%2)==0" />
|
||||
<svg-icon icon-class="LDAgencyIcon1" class="channel-icon" v-if="!item.active" />
|
||||
</template>
|
||||
<template v-if="item.pay_code=='LDAgency2'">
|
||||
<svg-icon icon-class="LDAgencyIcon3" class="channel-icon" v-if="item.active && (index%2)!=0" />
|
||||
<svg-icon icon-class="LDAgencyIcon2" class="channel-icon" v-if="item.active && (index%2)==0" />
|
||||
<svg-icon icon-class="LDAgencyIcon1" class="channel-icon" v-if="!item.active" />
|
||||
</template>
|
||||
<template v-if="item.pay_code=='htfxcashier' || item.pay_code=='ForcePay' || item.pay_code=='AbaPay' || item.pay_code=='PayOK'
|
||||
|| item.pay_code=='DidaPay' || item.pay_code=='PaySpec' || item.pay_code=='RediPay' || item.pay_code=='CCPay' || item.pay_code=='EBitPay' || item.pay_code=='Help2Pay'">
|
||||
<svg-icon icon-class="htfxcashierIcon3" class="channel-icon" v-if="item.active && (index%2)!=0" />
|
||||
|
Reference in New Issue
Block a user