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

@@ -48,7 +48,6 @@ export async function updateConfig(tag: string, data: Record<string, any>) {
delete result.data;
return result;
} else {
delete result.data;
return { code: RESULT_CODE_ERROR, msg: RESULT_MSG_ERROR };
}
}

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} `;
// 发起请求

View File

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

View File

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