v0.8.7测试

This commit is contained in:
2026-04-16 11:54:33 +08:00
parent 3a4e0357a3
commit 21b53375d7
4 changed files with 60 additions and 12 deletions

View File

@@ -114,8 +114,8 @@ async function exportMoralityRecords() {
return;
}
// 获取所有历史记录(不分页,获取全部)
const historyRes = await apiGet('/api/admin/conduct/history', { page: 1, page_size: 10000 });
// 获取所有历史记录(获取全部API限制最大1000条
const historyRes = await apiGet('/api/admin/conduct/history', { page: 1, page_size: 1000 });
if (!historyRes || !historyRes.success) {
showToast('获取历史记录失败', 'error');
return;