| | |
| | | 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); |
| | | }, |
| | | }, |
| | | }, |
| | | } |
| | | ); |
| | | |
| | |
| | | import * as taskUserServices from '@/services/api/taskUser'; |
| | | import { useQuery } from '@tanstack/vue-query'; |
| | | import { SettlementReceiveStatusText } from '@/constants'; |
| | | import { downloadFileByUrl, paginateList, setOSSLink } from '@/utils'; |
| | | import { downloadFileByUrl, hiddenIDNumberForEnd4, paginateList, setOSSLink } from '@/utils'; |
| | | |
| | | defineOptions({ |
| | | name: 'SelltementDetailInfo', |
| | |
| | | }, |
| | | timeoutFee: { type: 'money' }, |
| | | otherFee: { type: 'money' }, |
| | | identity: { |
| | | formatter: (row: API.GetSettlementTaskUsersQueryResultItem) => { |
| | | return hiddenIDNumberForEnd4(row.identity); |
| | | }, |
| | | }, |
| | | }, |
| | | } |
| | | ); |
| | |
| | | <script setup lang="ts"> |
| | | import { ProTableV2, LoadingLayout, AppContainer, useTable } from '@bole-core/components'; |
| | | import * as userResumeServices from '@/services/api/userResume'; |
| | | import { hiddenIDNumberForEnd4 } from '@/utils'; |
| | | |
| | | defineOptions({ |
| | | name: 'SignDetailView', |
| | |
| | | columnsRenderProps: { |
| | | hireStatus: { type: 'enum', valueEnum: EnumTaskUserHireStatusText }, |
| | | gender: { type: 'enum', valueEnum: EnumUserGenderText }, |
| | | identity: { |
| | | formatter: (row: API.GetUserResumesQueryResultItem) => { |
| | | return hiddenIDNumberForEnd4(row.identity); |
| | | }, |
| | | }, |
| | | }, |
| | | } |
| | | ); |