|
@@ -26,9 +26,9 @@
|
|
|
<WalletAddress :address="row.address" />
|
|
<WalletAddress :address="row.address" />
|
|
|
</template>
|
|
</template>
|
|
|
</ElTableColumn>
|
|
</ElTableColumn>
|
|
|
- <ElTableColumn prop="ethBalance" label="ETH余额" min-width="160" />
|
|
|
|
|
- <ElTableColumn prop="zkBalance" label="ETH余额(ZK)" min-width="160" />
|
|
|
|
|
- <ElTableColumn prop="zkUsdcBalance" label="USDC余额(ZK)" min-width="160" />
|
|
|
|
|
|
|
+ <ElTableColumn prop="ethBalance" label="ETH余额" min-width="160" show-overflow-tooltip />
|
|
|
|
|
+ <ElTableColumn prop="zkBalance" label="ETH余额(ZK)" min-width="160" show-overflow-tooltip />
|
|
|
|
|
+ <ElTableColumn prop="zkUsdcBalance" label="USDC余额(ZK)" min-width="160" show-overflow-tooltip />
|
|
|
<ElTableColumn prop="offBridgeNum" label="官方跨链" width="100" sortable></ElTableColumn>
|
|
<ElTableColumn prop="offBridgeNum" label="官方跨链" width="100" sortable></ElTableColumn>
|
|
|
<ElTableColumn
|
|
<ElTableColumn
|
|
|
prop="lastOffBridge"
|
|
prop="lastOffBridge"
|
|
@@ -64,7 +64,13 @@
|
|
|
<ElTableColumn prop="swapNum" label="swap" width="100" sortable></ElTableColumn>
|
|
<ElTableColumn prop="swapNum" label="swap" width="100" sortable></ElTableColumn>
|
|
|
<ElTableColumn prop="lastSwap" label="swap" width="150" :formatter="timeFormatter" sortable></ElTableColumn>
|
|
<ElTableColumn prop="lastSwap" label="swap" width="150" :formatter="timeFormatter" sortable></ElTableColumn>
|
|
|
<ElTableColumn prop="mintNum" label="mint" width="100" sortable></ElTableColumn>
|
|
<ElTableColumn prop="mintNum" label="mint" width="100" sortable></ElTableColumn>
|
|
|
- <ElTableColumn prop="lastMint" label="mint时间" width="150" :formatter="timeFormatter" sortable></ElTableColumn>
|
|
|
|
|
|
|
+ <ElTableColumn
|
|
|
|
|
+ prop="lastMint"
|
|
|
|
|
+ label="mint时间"
|
|
|
|
|
+ width="150"
|
|
|
|
|
+ :formatter="timeFormatter"
|
|
|
|
|
+ sortable
|
|
|
|
|
+ ></ElTableColumn>
|
|
|
<ElTableColumn width="80" fixed="right">
|
|
<ElTableColumn width="80" fixed="right">
|
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
|
<ElButton type="danger" size="small" @click.stop="deleteAccount(row)">删除</ElButton>
|
|
<ElButton type="danger" size="small" @click.stop="deleteAccount(row)">删除</ElButton>
|
|
@@ -96,7 +102,7 @@ import { ethers, Wallet } from 'ethers'
|
|
|
import { RotateClockwise, DotsVertical } from '@vicons/tabler'
|
|
import { RotateClockwise, DotsVertical } from '@vicons/tabler'
|
|
|
import { useTimeFormatter } from '@/utils/formatter'
|
|
import { useTimeFormatter } from '@/utils/formatter'
|
|
|
|
|
|
|
|
-const timeFormatter = useTimeFormatter()
|
|
|
|
|
|
|
+const timeFormatter = useTimeFormatter('MM-dd HH:mm:ss')
|
|
|
const el = ref(null)
|
|
const el = ref(null)
|
|
|
const { width, height } = useElementSize(el)
|
|
const { width, height } = useElementSize(el)
|
|
|
const tableHeight = computed(() => {
|
|
const tableHeight = computed(() => {
|