From 7010ed1238d8e279303da93eb1f4462d402668e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8?= Date: Wed, 24 Jun 2026 13:25:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8C=85=E6=B5=8B=E8=AF=95=E7=8E=AF?= =?UTF-8?q?=E5=A2=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/capital/withdrawChanl/options.ts | 1 + src/views/wallet/addressList/index.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/capital/withdrawChanl/options.ts b/src/views/capital/withdrawChanl/options.ts index d618b28..5010b17 100644 --- a/src/views/capital/withdrawChanl/options.ts +++ b/src/views/capital/withdrawChanl/options.ts @@ -19,6 +19,7 @@ export const formItemsData = [ { label: '渠道费用', prop: 'channel_fee', + type: 'number', min: 0, max: 999999, controls: false, diff --git a/src/views/wallet/addressList/index.vue b/src/views/wallet/addressList/index.vue index 9118837..9213179 100644 --- a/src/views/wallet/addressList/index.vue +++ b/src/views/wallet/addressList/index.vue @@ -209,7 +209,7 @@ const handleRefresh = async (row?: AddressRow) => { ElMessage.success('刷新成功') const index = tableData.value.findIndex(item => item.address === targetRow.address) if (index !== -1) { - tableData.value[index]!.trxBalance = res.data; + tableData.value[index]!.usdtBalance = res.data; } } } catch (error) {