You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
276 B
TypeScript
15 lines
276 B
TypeScript
1 year ago
|
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 });
|
||
|
};
|