Step UX-1:通用选择器

This commit is contained in:
Cheng Zhou
2025-12-17 14:37:57 +08:00
parent 580d64602f
commit dd51f56707
13 changed files with 334 additions and 52 deletions
+5
View File
@@ -0,0 +1,5 @@
import { apiGet } from "./axios";
import type { ApiListResponse } from "../types/api";
export const fetchUsers = (params?: Record<string, any>) =>
apiGet<ApiListResponse<any>>("/api/v1/users", { params });