mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 01:17:23 +08:00
15 lines
276 B
TypeScript
15 lines
276 B
TypeScript
import { http } from "@/utils/http";
|
|
|
|
type Result = {
|
|
success: boolean;
|
|
data?: {
|
|
/** 列表数据 */
|
|
list: Array<any>;
|
|
};
|
|
};
|
|
|
|
/** 卡片列表 */
|
|
export const getCardList = (data?: object) => {
|
|
return http.request<Result>("post", "/getCardList", { data });
|
|
};
|