打包测试环境

This commit is contained in:
2026-06-24 13:25:28 +08:00
parent cc502b2ac6
commit 7010ed1238
2 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ export const formItemsData = [
{ {
label: '渠道费用', label: '渠道费用',
prop: 'channel_fee', prop: 'channel_fee',
type: 'number',
min: 0, min: 0,
max: 999999, max: 999999,
controls: false, controls: false,

View File

@ -209,7 +209,7 @@ const handleRefresh = async (row?: AddressRow) => {
ElMessage.success('刷新成功') ElMessage.success('刷新成功')
const index = tableData.value.findIndex(item => item.address === targetRow.address) const index = tableData.value.findIndex(item => item.address === targetRow.address)
if (index !== -1) { if (index !== -1) {
tableData.value[index]!.trxBalance = res.data; tableData.value[index]!.usdtBalance = res.data;
} }
} }
} catch (error) { } catch (error) {