From 5f3d98be9922c42bd6fc4bfd87941ed03e341c4b Mon Sep 17 00:00:00 2001 From: make Date: Tue, 6 May 2025 17:34:15 +0800 Subject: [PATCH] feat: debug --- src/api/modules/video/list.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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); +};