fix(portal): 越南双 tab 按 area_id=3 判断,与 PC 统一

之前只认 pay_channel=='ALIN_VN'(只有 2 个账号),
现在所有 area_id=3 的越南用户都能看到 银行卡/USDT 双 tab。
BC/YBF 分支加 area_id != 3 条件避免重复。
This commit is contained in:
li
2026-04-15 23:52:37 +08:00
parent 91fa85f4ef
commit 99e4265e01
+4 -4
View File
@@ -13,7 +13,7 @@
</view>
</u-navbar>
<view class="content">
<template v-if="userInfo.pay_channel == 'BC'">
<template v-if="userInfo.pay_channel == 'BC' && userInfo.area_id != 3">
<view class="picker-view" @click="show = true">
<u-input
readonly
@@ -90,7 +90,7 @@
</view>
</view>
</template>
<template v-if="userInfo.pay_channel == 'YBF'">
<template v-if="userInfo.pay_channel == 'YBF' && userInfo.area_id != 3">
<view
class="picker-view"
@click="fnPicker('currency')"
@@ -184,8 +184,8 @@
@confirm="confirmPicker"
></u-picker>
</template>
<!-- 越南在线充值银行卡 (AlinPay) / USDT (Epay) 双通道 -->
<template v-if="userInfo.pay_channel == 'ALIN_VN'">
<!-- 越南地区银行卡 (AlinPay) / USDT (Epay) 双通道 PC 同步按 area_id 判断 -->
<template v-if="userInfo.area_id == 3">
<view class="pay-tabs">
<view
class="pay-tab"