list.ts 278 B

1234567891011121314
  1. import { http } from "@/utils/http";
  2. type Result = {
  3. success: boolean;
  4. data?: {
  5. /** 列表数据 */
  6. list: Array<any>;
  7. };
  8. };
  9. /** 卡片列表 */
  10. export const getCardList = (data?: object) => {
  11. return http.request<Result>("post", "/get-card-list", { data });
  12. };