zhengyiming
2 天以前 97334831995a7a442af237dd44eaf3fc7edc120b
src/views/FinanceManage/BalanceManage.vue
@@ -53,6 +53,7 @@
import { useAccess } from '@/hooks';
import * as userServices from '@/services/api/user';
import BalanceDetailDialog from './components/BalanceDetailDialog.vue';
import { hiddenIDNumberForEnd4 } from '@/utils';
defineOptions({
  name: 'BalanceManage',
@@ -109,9 +110,15 @@
      keywords: '',
      balanceMin: null as number,
      balanceMax: null as number,
      orderInput: [{ property: 'id', order: EnumPagedListOrder.Asc }],
      orderInput: [{ property: 'id', order: EnumPagedListOrder.Desc }],
    },
    columnsRenderProps: {},
    columnsRenderProps: {
      identity: {
        formatter: (row: API.GetPersonalUserWalletBalancesQueryResultItem) => {
          return hiddenIDNumberForEnd4(row.identity);
        },
      },
    },
  }
);