This commit is contained in:
make
2025-04-06 21:51:01 +08:00
commit 3792acd4c7
408 changed files with 42349 additions and 0 deletions

11
src/api/modules/ad/yx.ts Normal file
View File

@@ -0,0 +1,11 @@
import { ResPage } from "@/api/interface/index";
import { YxList } from "@/api/interface/ad/yx";
import http from "@/api";
import { getGuangGaoYouXiListApiUrl } from "@/api/config";
/**
* @name 广告列表 -- yx
*/
export const ListApi = (params: YxList.ReqParams) => {
return http.get<ResPage<YxList.ResList>>(getGuangGaoYouXiListApiUrl, params);
};