打包测试环境
This commit is contained in:
parent
cc502b2ac6
commit
7010ed1238
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue