diff --git a/src/api/modules/video/list.ts b/src/api/modules/video/list.ts index 33c08f5..764fa9c 100644 --- a/src/api/modules/video/list.ts +++ b/src/api/modules/video/list.ts @@ -22,3 +22,15 @@ export const setLevel = (params: VideoList.delParams) => { export const setBoxOffice = (params: VideoList.delParams) => { return http.post>(getVideoSetBoxOfficeApiUrl, params); }; +/** + * @name 批量设置视频推荐等级 + */ +export const batchData = (params: VideoList.delParams) => { + return http.post>(getVideoSetLevelApiUrl, params); +}; +/** + * @name 批量设置视频推荐等级 + */ +export const batchVipData = (params: VideoList.delParams) => { + return http.post>(getVideoSetLevelApiUrl, params); +};