mirror of
https://gitee.com/bootx/dax-pay-ui
synced 2026-08-12 07:25:39 +08:00
fix: table-datasource,如果后端返回的page total是字符串,会导致页码乱掉 (#2483)
This commit is contained in:
@@ -310,7 +310,7 @@ export function useDataSource(
|
||||
const resultTotal: number = isArrayResult ? res.length : get(res, totalField);
|
||||
|
||||
// 假如数据变少,导致总页数变少并小于当前选中页码,通过getPaginationRef获取到的页码是不正确的,需获取正确的页码再次执行
|
||||
if (resultTotal) {
|
||||
if (Number(resultTotal)) {
|
||||
const currentTotalPage = Math.ceil(resultTotal / pageSize);
|
||||
if (current > currentTotalPage) {
|
||||
setPagination({
|
||||
|
||||
Reference in New Issue
Block a user