2
0

修复分页器

This commit is contained in:
lai
2025-02-20 14:48:27 +08:00
parent 8368a082ea
commit 1dd6d27d64
3 changed files with 10 additions and 4 deletions

View File

@@ -85,16 +85,20 @@ export function useTable<A extends AntDesign.TableApiFn>(config: AntDesign.AntDe
// size: 'f',
current: 1,
pageSize: 10,
defaultPageSize: 10,
responsive: true,
onChange: async (current: number, pageSize: number) => {
pagination.current = current;
pagination.pageSize = pageSize;
updateSearchParams({
pageNum: current,
pageSize
});
getData();
}
},
showTotal: (total: number) =>
$t('common.tablePaginationTotal', { total: total })
});
// this is for mobile, if the system does not support mobile, you can use `pagination` directly