修复(#14): 支持 USDT 提现方式展示

This commit is contained in:
2026-06-09 02:14:51 -07:00
parent 1834b97fe2
commit 3aae43f539
2 changed files with 38 additions and 23 deletions
@@ -45,6 +45,7 @@ const WITHDRAWAL_METHOD_MAP: Record<number, string> = {
1: "支付宝",
2: "微信",
3: "银行卡",
4: "USDT(TRC20)",
};
const rejectSchema = z.object({
@@ -144,6 +145,7 @@ export default function WithdrawalPage() {
{ value: "1", label: "支付宝" },
{ value: "2", label: "微信" },
{ value: "3", label: "银行卡" },
{ value: "4", label: "USDT(TRC20)" },
{ value: "0", label: "其他" },
];