refactor: ♻️ 用户列表调整为卡片显示

This commit is contained in:
ray
2024-11-13 08:12:20 +08:00
parent c8787b43cd
commit 9d05c0f4c6
5 changed files with 87 additions and 47 deletions

View File

@@ -21,7 +21,7 @@ const UserAPI = {
* @param queryParams 查询参数
*/
getPage(queryParams: UserPageQuery) {
return request<PageResult<Record<string, any>[]>>({
return request<PageResult<UserPageVO[]>>({
url: `${USER_BASE_URL}/page`,
method: "GET",
data: queryParams,