This commit is contained in:
2025-11-24 13:49:36 +08:00
parent 21b56d0948
commit 8b9fdb706f
43 changed files with 8123 additions and 622 deletions

View File

@@ -12,7 +12,7 @@ app.route({
}).define(async (ctx) => {
const query = ctx.query;
const page = query.page ?? 1;
const pageSize = query.pageSize ?? 10;
const pageSize = query.pageSize ?? 99999;
const db = getDb();
try {
const offset = (page - 1) * pageSize;