每周提交更新
This commit is contained in:
@@ -77,21 +77,23 @@
|
||||
<el-table-column label="支付时间" width="160">
|
||||
<template #default="scope">{{ formatFullTime(scope.row.createTime) }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="收款金额(USDT)" width="140" align="right">
|
||||
<el-table-column label="收款金额" width="140" align="right">
|
||||
<template #default="scope">
|
||||
<span class="amount-green">
|
||||
<el-tooltip
|
||||
v-if="formatAmount(scope.row.realAmount, scope.row.coin || scope.row.toSymbol || 'USDT').truncated"
|
||||
:content="`+${formatAmount(scope.row.realAmount, scope.row.coin || scope.row.toSymbol || 'USDT').full}`"
|
||||
v-if="formatAmount(scope.row.realAmount, scope.row.toSymbol || scope.row.coin || '').truncated"
|
||||
:content="`+${formatAmount(scope.row.realAmount, scope.row.toSymbol || scope.row.coin || '').full} ${(scope.row.toSymbol || scope.row.coin || '').toUpperCase()}`"
|
||||
placement="top"
|
||||
>
|
||||
<span>
|
||||
+{{ formatAmount(scope.row.realAmount, scope.row.coin || scope.row.toSymbol || 'USDT').text }}
|
||||
+{{ formatAmount(scope.row.realAmount, scope.row.toSymbol || scope.row.coin || '').text }}
|
||||
{{ (scope.row.toSymbol || scope.row.coin || '').toUpperCase() }}
|
||||
<i class="el-icon-more amount-more"></i>
|
||||
</span>
|
||||
</el-tooltip>
|
||||
<span v-else>
|
||||
+{{ formatAmount(scope.row.realAmount, scope.row.coin || scope.row.toSymbol || 'USDT').text }}
|
||||
+{{ formatAmount(scope.row.realAmount, scope.row.toSymbol || scope.row.coin || '').text }}
|
||||
{{ (scope.row.toSymbol || scope.row.coin || '').toUpperCase() }}
|
||||
</span>
|
||||
</span>
|
||||
</template>
|
||||
@@ -154,32 +156,32 @@ export default {
|
||||
return {
|
||||
loading: false,
|
||||
rows: [
|
||||
{
|
||||
orderId: '1234567890',
|
||||
fromChain: 'tron',
|
||||
fromSymbol: 'USDT',
|
||||
fromAddress: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
toChain: 'tron',
|
||||
coin: 'USDT',
|
||||
toAddress: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
txHash: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
status: 2,
|
||||
updateTime: '2024-01-15 14:30:25',
|
||||
realAmount: 100,
|
||||
},
|
||||
{
|
||||
orderId: '1234567890',
|
||||
fromChain: 'tron',
|
||||
fromSymbol: 'USDT',
|
||||
fromAddress: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
toChain: 'tron',
|
||||
coin: 'USDT',
|
||||
toAddress: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
txHash: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
status: 1,
|
||||
updateTime: '2024-01-15 14:30:25',
|
||||
realAmount: 106,
|
||||
}
|
||||
// {
|
||||
// orderId: '1234567890',
|
||||
// fromChain: 'tron',
|
||||
// fromSymbol: 'USDT',
|
||||
// fromAddress: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
// toChain: 'tron',
|
||||
// coin: 'USDT',
|
||||
// toAddress: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
// txHash: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
// status: 2,
|
||||
// updateTime: '2024-01-15 14:30:25',
|
||||
// realAmount: 100,
|
||||
// },
|
||||
// {
|
||||
// orderId: '1234567890',
|
||||
// fromChain: 'tron',
|
||||
// fromSymbol: 'USDT',
|
||||
// fromAddress: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
// toChain: 'tron',
|
||||
// coin: 'USDT',
|
||||
// toAddress: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
// txHash: 'TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE',
|
||||
// status: 1,
|
||||
// updateTime: '2024-01-15 14:30:25',
|
||||
// realAmount: 106,
|
||||
// }
|
||||
],
|
||||
page: 1,
|
||||
pageSize: 10,
|
||||
|
||||
Reference in New Issue
Block a user