fix: 对接提现申请与用户钱包,支付流水页面,对接角色权限页面

This commit is contained in:
ZhuRui
2026-08-04 18:26:47 +08:00
parent bf3f380ba8
commit 7cc56af0d5
14 changed files with 180 additions and 123 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ export type {
const delay = (ms: number) => new Promise<void>((r) => setTimeout(r, ms));
/** GET /sys/user/page — 用户分页 */
/** GET /admin/sys/user/page — 用户分页 */
export async function getUserList(
params: UserListQueryParams,
): Promise<ApiResult<PageData<TournamentAdminUserVO>>> {
@@ -38,7 +38,7 @@ export async function getUserList(
const limit = Number(params.limit) || 10;
return { code: 200, msg: 'success', data: buildMockUserListPage(page, limit) };
}
return get('/sys/user/page', params as Record<string, any>);
return get('/admin/sys/user/page', params as Record<string, any>);
}
/** POST /sys/user/save — 新增用户 */