|
|
|
@ -197,7 +197,7 @@ const cellClick = function (row, column) { |
|
|
|
hkGold: t('clientCount.market.hkGold'), |
|
|
|
sgHcGold: t('clientCount.market.sgHcGold'), |
|
|
|
myGold: t('clientCount.market.myGold'), |
|
|
|
sgGold: t('clientCount.market.sgGold'), |
|
|
|
sgGold: t('clientCount.market.sgCmGold'), |
|
|
|
caGold: t('clientCount.market.caGold'), |
|
|
|
thHsGold: t('clientCount.market.thHsGold'), |
|
|
|
thHaGold: t('clientCount.market.thHaGold'), |
|
|
|
@ -252,7 +252,7 @@ const getWalletDetail = async () => { |
|
|
|
|
|
|
|
if (result.code === 200) { |
|
|
|
walletDetailList.value = result.data.list.map(item => ({ |
|
|
|
time: item.createTime, |
|
|
|
time: moment(item.createTime).format('YYYY-MM-DD HH:mm:ss'), |
|
|
|
type: item.type === 0 ? t('common.recharge') : t('common.consume'), |
|
|
|
amount: item.type === 1 ? -Math.abs(item.amount) : Math.abs(item.amount), |
|
|
|
desc: item.description, |
|
|
|
@ -635,7 +635,7 @@ const format3 = (num) => { |
|
|
|
<span>{{ (scope.row.myGold || 0) }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="sgGold" :label="$t('clientCount.market.sgGold')" sortable="custom" min-width="120"> |
|
|
|
<el-table-column prop="sgGold" :label="$t('clientCount.market.sgCmGold')" sortable="custom" min-width="120"> |
|
|
|
<template #default="scope"> |
|
|
|
<span>{{ (scope.row.sgGold || 0) }}</span> |
|
|
|
</template> |
|
|
|
@ -749,7 +749,7 @@ const format3 = (num) => { |
|
|
|
<el-table-column prop="status" :label="$t('clientCount.transactionStatus')" align="center" width="220" fixed="right"> |
|
|
|
<template #default="scope"> |
|
|
|
<el-tag :type="scope.row.status === 1 ? 'success' : scope.row.status === 2 ? 'danger' : 'info'" :effect="scope.row.status === 1 ? 'light' : 'plain'"> |
|
|
|
{{ scope.row.status === 1 ? $t('common.normal') : scope.row.status === 2 ? $t('common_list.refunded') : $t('clientCount.exceptionData') }} |
|
|
|
{{ scope.row.status === 1 ? t('common_list.normal') : scope.row.status === 2 ? t('common_list.refunded') : t('clientCount.exceptionData') }} |
|
|
|
</el-tag> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|