12 lines
373 B
TypeScript
12 lines
373 B
TypeScript
import { ResPage } from "@/api/interface/index";
|
|
import { ByList } from "@/api/interface/ad/by";
|
|
import http from "@/api";
|
|
import { getGuangGaoBaoYangRuZhuListApiUrl } from "@/api/config";
|
|
|
|
/**
|
|
* @name 广告列表 -- by
|
|
*/
|
|
export const ListApi = (params: ByList.ReqParams) => {
|
|
return http.get<ResPage<ByList.ResList>>(getGuangGaoBaoYangRuZhuListApiUrl, params);
|
|
};
|