|
|
|
@ -62,6 +62,14 @@ export async function getBusinessPosterUsingPost(
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 商戶端获得所有首页模板 GET /b2b2c/pbcbusiness/getIndexPageTemplate */
|
|
|
|
|
export async function getIndexPageTemplateUsingGet(options?: { [key: string]: any }) {
|
|
|
|
|
return request<API.AjaxResult>('/b2b2c/pbcbusiness/getIndexPageTemplate', {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
...(options || {}),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** getPage 分页,按照搜索条件查询出商户表记录(别用这个) POST /b2b2c/pbcbusiness/getpage */
|
|
|
|
|
export async function getPageUsingPost1(
|
|
|
|
|
body: API.PbcBusinessPageDTO,
|
|
|
|
@ -120,7 +128,7 @@ export async function businessIndexUsingPost(
|
|
|
|
|
body: API.PbcBusinessIndexDTO,
|
|
|
|
|
options?: { [key: string]: any },
|
|
|
|
|
) {
|
|
|
|
|
return request<API.AjaxResultListPbcBusiness_>('/b2b2c/pbcbusiness/index', {
|
|
|
|
|
return request<API.AjaxResult>('/b2b2c/pbcbusiness/index', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: {
|
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
|