From b62daf4aaca5fcb8eea7bfd4149dbb92b10f50de Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期三, 04 六月 2025 11:40:06 +0800 Subject: [PATCH] 我的活动,活动,用户管理页面, --- 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