fix: 查询分页*条数

This commit is contained in:
TsMask
2023-09-26 14:18:19 +08:00
parent 550a19e777
commit e77614a86c
4 changed files with 3 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ export async function listNeInfo(query: Record<string, any>) {
}
// 分页
const pageNum = query.pageNum - 1;
const pageNum = (query.pageNum - 1) * query.pageSize;
const limtSql = ` limit ${pageNum},${query.pageSize} `;
// 发起请求