|
|
@@ -30,6 +30,8 @@ const userStore = useUserStore();
|
|
|
const userInfo = computed(() => userStore.userInfo);
|
|
|
import { useAccountOptions } from '@/composables/useAccountOptions'
|
|
|
const { loginOptions, isLoaded, isSuccess } = useAccountOptions()
|
|
|
+import { useFilters } from '@/composables/useFilters'
|
|
|
+const { numberFormat, numberDesensitization, numberDecimal } = useFilters()
|
|
|
const search = ref({
|
|
|
type: 1, followLogin: null,
|
|
|
|
|
|
@@ -61,7 +63,7 @@ const getColumnsByType = (type: number) => {
|
|
|
label: t('Documentary.TundManagement.item25'),
|
|
|
align: 'center',
|
|
|
headerAlign: 'center',
|
|
|
- formatter: ({ row }) => row.dealLogin || '--'
|
|
|
+ formatter: ({ row }) => numberDesensitization(row.dealLogin) || '--'
|
|
|
},
|
|
|
{
|
|
|
prop: 'dealPlatform',
|
|
|
@@ -136,7 +138,7 @@ const getColumnsByType = (type: number) => {
|
|
|
label: t('Documentary.tradingCenter.item18'),
|
|
|
align: 'center',
|
|
|
headerAlign: 'center',
|
|
|
- formatter: ({ row }) => row.dealLogin || '--'
|
|
|
+ formatter: ({ row }) => numberDesensitization(row.dealLogin) || '--'
|
|
|
},
|
|
|
{
|
|
|
prop: 'followLogin',
|