From ae5bb0dc68ec9a0be23d2173cec320d5c41e79d1 Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期三, 28 五月 2025 09:05:57 +0800
Subject: [PATCH] Merge branch 'dev' of http://42.193.1.25:9521/r/lmk-shop-wx into dev

---
 api/video.js |   41 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 41 insertions(+), 0 deletions(-)

diff --git a/api/video.js b/api/video.js
index fd76f80..843d069 100644
--- a/api/video.js
+++ b/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
+  });
+}

--
Gitblit v1.8.0