This commit is contained in:
2025-10-05 16:44:01 +08:00
parent de21261b1b
commit 68a14aad28
2 changed files with 31 additions and 5 deletions

View File

@@ -86,9 +86,10 @@ export function getUserList(
limit = 10,
type = "",
keyword: string,
orderBy = "",
) {
return http.get("admin/user", {
params: { paging: true, offset, limit, keyword, type },
params: { paging: true, offset, limit, keyword, type, order_by: orderBy },
})
}