Files
SEONexusAdmin/src/api/modules/ad/yx.ts
Your Name 845d68110b debug
2026-04-15 12:00:09 +08:00

10 lines
324 B
TypeScript

import { ResPage } from "@/api/interface/index";
import { YxList } from "@/api/interface/ad/yx";
import http from "@/api";
import { getGuangGaoYouXiListApiUrl } from "@/api/config";
export const ListApi = (params: YxList.ReqParams) => {
return http.get<ResPage<YxList.ResList>>(getGuangGaoYouXiListApiUrl, params);
};