feat: debug

This commit is contained in:
make
2025-05-06 17:34:15 +08:00
parent 54c45a7ed0
commit 5f3d98be99

View File

@@ -22,3 +22,15 @@ export const setLevel = (params: VideoList.delParams) => {
export const setBoxOffice = (params: VideoList.delParams) => {
return http.post<ResPage<ResultData>>(getVideoSetBoxOfficeApiUrl, params);
};
/**
* @name 批量设置视频推荐等级
*/
export const batchData = (params: VideoList.delParams) => {
return http.post<ResPage<ResultData>>(getVideoSetLevelApiUrl, params);
};
/**
* @name 批量设置视频推荐等级
*/
export const batchVipData = (params: VideoList.delParams) => {
return http.post<ResPage<ResultData>>(getVideoSetLevelApiUrl, params);
};