mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
16 lines
290 B
TypeScript
16 lines
290 B
TypeScript
import { http } from "../utils/http";
|
|
|
|
type Result = {
|
|
data?: {
|
|
/** 列表数据 */
|
|
list: Array<any>;
|
|
};
|
|
code?: number;
|
|
msg?: string;
|
|
};
|
|
|
|
/** 卡片列表 */
|
|
export const getCardList = (data?: object) => {
|
|
return http.request<Result>("post", "/getCardList", { data });
|
|
};
|