10 lines
324 B
TypeScript
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);
|
|
};
|