import { http } from "../utils/http"; type Result = { data?: { /** 列表数据 */ list: Array; }; code?: number; msg?: string; }; /** 卡片列表 */ export const getCardList = (data?: object) => { return http.request("post", "/getCardList", { data }); };