You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
435 B
TypeScript
19 lines
435 B
TypeScript
2 years ago
|
// @ts-ignore
|
||
|
/* eslint-disable */
|
||
|
import request from '@/utils/request';
|
||
|
|
||
|
/** save POST /b2b2c/pbccontentpublish/list */
|
||
|
export async function saveUsingPost(
|
||
|
body: API.AjaxRequestJSONObject_,
|
||
|
options?: { [key: string]: any },
|
||
|
) {
|
||
|
return request<API.AjaxResult>('/b2b2c/pbccontentpublish/list', {
|
||
|
method: 'POST',
|
||
|
headers: {
|
||
|
'Content-Type': 'application/json',
|
||
|
},
|
||
|
data: body,
|
||
|
...(options || {}),
|
||
|
});
|
||
|
}
|