fix:新增USDT线下支付通道

This commit is contained in:
2025-09-09 09:38:29 +08:00
parent 898f87d910
commit 445cac17a9
2 changed files with 7 additions and 2 deletions

View File

@ -661,7 +661,7 @@ function toOpenPay(json) {
}).catch(() => { }).catch(() => {
payLoading.value = false payLoading.value = false
}) })
} else if (pay_channel=='remittance2') { } else if (pay_channel=='remittance2' || pay_channel=='remittance4') {
remittanceSign({ remittanceSign({
qcc_language: serverLang(), qcc_language: serverLang(),
goldInId: patams.goldInId, goldInId: patams.goldInId,

View File

@ -5,7 +5,7 @@
:class="[ :class="[
{'tab-active': item.active}, {'tab-active': item.active},
{'channel-tab-light': (item.pay_code=='LDAgency' || item.pay_code=='htfxcashier' || item.pay_code=='htfxcashier3')}, {'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="" style=""
v-for="(item, index) in channelList" :key="index" @click="selectChannel(index)" > 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="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;" /> <svg-icon icon-class="remittance2Icon1" class="channel-icon" v-if="!item.active" style="left: -0.5vw;bottom: -10px;" />
</template> </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'"> <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="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" /> <svg-icon icon-class="remittance3Icon2" class="channel-icon" v-if="item.active && (index%2)==0" />