优化列表分页和数据加载

This commit is contained in:
yml2213
2026-07-24 13:25:27 +08:00
parent 6840728da6
commit f91c05c108
17 changed files with 647 additions and 161 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ export default function AssignmentsPage() {
// 加载账号(仅已成功登录过的)
const loadAccounts = async () => {
try {
const all = await accountApi.list({ has_cookie: true });
const all = await accountApi.list({ has_cookie: true, include_sensitive: false });
setAccounts(all);
} catch (e: unknown) {
message.error(getErrorMessage(e));