绿满眶商城微信小程序-uniapp
zhanghua
2025-05-28 ae5bb0dc68ec9a0be23d2173cec320d5c41e79d1
api/video.js
@@ -47,3 +47,44 @@
   data: data
  });
}
/**
 * 关注作者
 *
 * @param params
 */
 export function subscribe(authorId) {
  return http.request({
    url: "/lmk/my-subscribe/subscribe/" + authorId,
    method: Method.POST,
    needToken: true
  });
}
/**
 * 获取视频评论
 *
 * @param params
 */
 export function getVideoComments(params) {
  return http.request({
    url: "/lmk/video-comment/wx/page",
    method: Method.GET,
    needToken: true,
   params: params
  });
}
/**
 * 发布视频评论
 *
 * @param params
 */
 export function addVideoComment(data) {
  return http.request({
    url: "/lmk/video-comment/comment",
    method: Method.POST,
    needToken: true,
   data: data
  });
}