From 117b18ca111f2be41aec49961dc98db1769ca39f Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 27 五月 2025 19:17:53 +0800
Subject: [PATCH] uview组件和uniapp组件冲突问题、视频评论

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

diff --git a/api/video.js b/api/video.js
index 49e1772..843d069 100644
--- a/api/video.js
+++ b/api/video.js
@@ -60,3 +60,31 @@
     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