绿满眶商城微信小程序-uniapp
zhanghua
2025-06-11 1eefd113e28e802348a9cae69a41945c1dc48b0f
api/video.js
@@ -22,15 +22,16 @@
}
/**
 * 获取五个推荐视频
 * 获取推荐视频
 * 
 * @param params
 */
 export function getRecommendVideos() {
 export function getRecommendVideos(params) {
  return http.request({
    url: "/lmk/video/recommend",
    method: Method.GET,
    needToken: true
    needToken: true,
   params: params
  });
}
@@ -56,6 +57,19 @@
 export function subscribe(authorId) {
  return http.request({
    url: "/lmk/my-subscribe/subscribe/" + authorId,
    method: Method.POST,
    needToken: true
  });
}
/**
 * 取消关注作者
 *
 * @param params
 */
 export function unSubscribe(authorId) {
  return http.request({
    url: "/lmk/my-subscribe/unSubscribe/" + authorId,
    method: Method.POST,
    needToken: true
  });
@@ -116,3 +130,17 @@
   data: data
  });
}
/**
 * 获取视频详情
 *
 * @param params
 */
 export function getVideoDetail(id) {
  return http.request({
    url: "/lmk/video/wx/detail/" + id,
    method: Method.GET,
    needToken: true
  });
}