fix:新增USDT线下支付通道
This commit is contained in:
@ -661,7 +661,7 @@ function toOpenPay(json) {
|
||||
}).catch(() => {
|
||||
payLoading.value = false
|
||||
})
|
||||
} else if (pay_channel=='remittance2') {
|
||||
} else if (pay_channel=='remittance2' || pay_channel=='remittance4') {
|
||||
remittanceSign({
|
||||
qcc_language: serverLang(),
|
||||
goldInId: patams.goldInId,
|
||||
|
@ -5,7 +5,7 @@
|
||||
: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=='htfxcashier2')}
|
||||
{'channel-tab-dark': (item.pay_code=='remittance' || item.pay_code=='remittance2' || item.pay_code=='remittance3' || item.pay_code=='remittance4' || item.pay_code=='htfxcashier2')}
|
||||
]"
|
||||
style=""
|
||||
v-for="(item, index) in channelList" :key="index" @click="selectChannel(index)" >
|
||||
@ -20,6 +20,11 @@
|
||||
<svg-icon icon-class="remittance2Icon2" class="channel-icon" v-if="item.active && (index%2)==0" style="left: -10px;bottom: -10px;" />
|
||||
<svg-icon icon-class="remittance2Icon1" class="channel-icon" v-if="!item.active" style="left: -0.5vw;bottom: -10px;" />
|
||||
</template>
|
||||
<template v-if="item.pay_code=='remittance4'">
|
||||
<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;" />
|
||||
<svg-icon icon-class="remittance2Icon1" class="channel-icon" v-if="!item.active" style="left: -0.5vw;bottom: -10px;" />
|
||||
</template>
|
||||
<template v-if="item.pay_code=='remittance3'">
|
||||
<svg-icon icon-class="remittance3Icon3" class="channel-icon" v-if="item.active && (index%2)!=0" />
|
||||
<svg-icon icon-class="remittance3Icon2" class="channel-icon" v-if="item.active && (index%2)==0" />
|
||||
|
Reference in New Issue
Block a user