修复(#14): 调整 USDT 提现方式枚举口径
PR Check / Lint, Check, Test and Build (push) Has been cancelled
Build and Release / Build (push) Has been cancelled

This commit is contained in:
2026-06-09 03:30:57 -07:00
parent 4d84095af2
commit 09c5216f60
2 changed files with 9 additions and 20 deletions
+2 -4
View File
@@ -44,8 +44,7 @@ const WITHDRAWAL_METHOD_MAP: Record<number, string> = {
0: "其他",
1: "支付宝",
2: "微信",
3: "银行卡",
4: "USDT(TRC20)",
3: "USDT(TRC20)",
};
const rejectSchema = z.object({
@@ -144,8 +143,7 @@ export default function WithdrawalPage() {
const methodOptions = [
{ value: "1", label: "支付宝" },
{ value: "2", label: "微信" },
{ value: "3", label: "银行卡" },
{ value: "4", label: "USDT(TRC20)" },
{ value: "3", label: "USDT(TRC20)" },
{ value: "0", label: "其他" },
];