增加换页序号

This commit is contained in:
bonus 2024-11-13 16:27:40 +08:00
parent ee6f9851af
commit 55ad5b85f6
1 changed files with 7 additions and 0 deletions

View File

@ -232,3 +232,10 @@ export function tansParams(params) {
export function blobValidate(data) {
return data.type !== 'application/json'
}
// 处理表格索引延续问题
export function indexContinuation(num, size) {
return (num - 1) * size + 1
}