| | |
| | | import { useAccess } from '@/hooks'; |
| | | import * as userServices from '@/services/api/user'; |
| | | import BalanceDetailDialog from './components/BalanceDetailDialog.vue'; |
| | | import { hiddenIDNumberForEnd4 } from '@/utils'; |
| | | |
| | | defineOptions({ |
| | | name: 'BalanceManage', |
| | |
| | | balanceMax: null as number, |
| | | orderInput: [{ property: 'id', order: EnumPagedListOrder.Desc }], |
| | | }, |
| | | columnsRenderProps: {}, |
| | | columnsRenderProps: { |
| | | identity: { |
| | | formatter: (row: API.GetPersonalUserWalletBalancesQueryResultItem) => { |
| | | return hiddenIDNumberForEnd4(row.identity); |
| | | }, |
| | | }, |
| | | }, |
| | | } |
| | | ); |
| | | |