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.
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
// @ts-ignore
|
|
/* eslint-disable */
|
|
import request from '@/utils/request';
|
|
|
|
/** search GET /b2b2c/image/search */
|
|
export async function searchUsingGet(body: API.AjaxRequest, options?: { [key: string]: any }) {
|
|
return request<API.AjaxResult>('/b2b2c/image/search', {
|
|
method: 'GET',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
data: body,
|
|
...(options || {}),
|
|
});
|
|
}
|
|
|
|
/** search PUT /b2b2c/image/search */
|
|
export async function searchUsingPut(body: API.AjaxRequest, options?: { [key: string]: any }) {
|
|
return request<API.AjaxResult>('/b2b2c/image/search', {
|
|
method: 'PUT',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
data: body,
|
|
...(options || {}),
|
|
});
|
|
}
|
|
|
|
/** search POST /b2b2c/image/search */
|
|
export async function searchUsingPost(body: API.AjaxRequest, options?: { [key: string]: any }) {
|
|
return request<API.AjaxResult>('/b2b2c/image/search', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
data: body,
|
|
...(options || {}),
|
|
});
|
|
}
|
|
|
|
/** search DELETE /b2b2c/image/search */
|
|
export async function searchUsingDelete(body: API.AjaxRequest, options?: { [key: string]: any }) {
|
|
return request<API.AjaxResult>('/b2b2c/image/search', {
|
|
method: 'DELETE',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
data: body,
|
|
...(options || {}),
|
|
});
|
|
}
|
|
|
|
/** search PATCH /b2b2c/image/search */
|
|
export async function searchUsingPatch(body: API.AjaxRequest, options?: { [key: string]: any }) {
|
|
return request<API.AjaxResult>('/b2b2c/image/search', {
|
|
method: 'PATCH',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
data: body,
|
|
...(options || {}),
|
|
});
|
|
}
|