master
parent
43921c93d1
commit
b6e9b7d982
@ -0,0 +1,32 @@
|
|||||||
|
// @ts-ignore
|
||||||
|
/* eslint-disable */
|
||||||
|
import request from '@/utils/request';
|
||||||
|
|
||||||
|
/** 获取海报配置列表 获取列表 GET /b2b2c/pbcBusinessPostConfig/getPostConfigList */
|
||||||
|
export async function getPostConfigListUsingGet(options?: { [key: string]: any }) {
|
||||||
|
return request<API.AjaxResultListPbcBusinessPostConfig_>(
|
||||||
|
'/b2b2c/pbcBusinessPostConfig/getPostConfigList',
|
||||||
|
{
|
||||||
|
method: 'GET',
|
||||||
|
...(options || {}),
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 单个海报配置信息 单个 GET /b2b2c/pbcBusinessPostConfig/postConfigDetail */
|
||||||
|
export async function postConfigDetailUsingGet(
|
||||||
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
||||||
|
params: API.postConfigDetailUsingGETParams,
|
||||||
|
options?: { [key: string]: any },
|
||||||
|
) {
|
||||||
|
return request<API.AjaxResultPbcBusinessPostConfig_>(
|
||||||
|
'/b2b2c/pbcBusinessPostConfig/postConfigDetail',
|
||||||
|
{
|
||||||
|
method: 'GET',
|
||||||
|
params: {
|
||||||
|
...params,
|
||||||
|
},
|
||||||
|
...(options || {}),
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
// @ts-ignore
|
||||||
|
/* eslint-disable */
|
||||||
|
import request from '@/utils/request';
|
||||||
|
|
||||||
|
/** querySearchKeyRank 查询关键词排行 POST /b2b2c/pbcSearchKey/querySearchKeyRank */
|
||||||
|
export async function querySearchKeyRankUsingPost(
|
||||||
|
body: API.PbcSearchKeyDTO,
|
||||||
|
options?: { [key: string]: any },
|
||||||
|
) {
|
||||||
|
return request<API.AjaxResultListPbcSearchKeyVO_>('/b2b2c/pbcSearchKey/querySearchKeyRank', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
},
|
||||||
|
data: body,
|
||||||
|
...(options || {}),
|
||||||
|
});
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue