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) {