diff --git a/module/batch.js b/module/batch.js index 7aad2cc..641181e 100644 --- a/module/batch.js +++ b/module/batch.js @@ -1,3 +1,5 @@ +// 批量请求接口 + module.exports = (query, request) => { const data = { 'e_r': true diff --git a/module/comment_event.js b/module/comment_event.js index 0548d2f..517ece9 100644 --- a/module/comment_event.js +++ b/module/comment_event.js @@ -1,3 +1,5 @@ +// 获取动态评论 + module.exports = (query, request) => { const data = { limit: query.limit || 20, diff --git a/module/comment_hotwall_list.js b/module/comment_hotwall_list.js index 3e082c6..f0072fd 100644 --- a/module/comment_hotwall_list.js +++ b/module/comment_hotwall_list.js @@ -1,3 +1,5 @@ +// 云村热评 + module.exports = (query, request) => { const data = {} return request( diff --git a/module/mv_detail_info.js b/module/mv_detail_info.js index 87ce2f9..c7aad0b 100644 --- a/module/mv_detail_info.js +++ b/module/mv_detail_info.js @@ -1,3 +1,4 @@ +// MV 点赞转发评论数数据 module.exports = (query, request) => { const data = { diff --git a/module/playlist_subscribers.js b/module/playlist_subscribers.js index f610bef..8db788b 100644 --- a/module/playlist_subscribers.js +++ b/module/playlist_subscribers.js @@ -1,3 +1,5 @@ +// 歌单收藏者 + module.exports = (query, request) => { const data = { id: query.id, diff --git a/module/setting.js b/module/setting.js index fc745c5..2829c99 100644 --- a/module/setting.js +++ b/module/setting.js @@ -1,3 +1,5 @@ +// 设置 + module.exports = (query, request) => { const data = { diff --git a/module/video_category_list.js b/module/video_category_list.js index a7f10d3..d5b9a4d 100644 --- a/module/video_category_list.js +++ b/module/video_category_list.js @@ -1,3 +1,5 @@ +// 视频分类列表 + module.exports = (query, request) => { const data = { offset: query.offset || 0, diff --git a/module/video_detail_info.js b/module/video_detail_info.js index d0845d5..b8338ff 100644 --- a/module/video_detail_info.js +++ b/module/video_detail_info.js @@ -1,3 +1,4 @@ +// 视频点赞转发评论数数据 module.exports = (query, request) => { const data = { diff --git a/module/video_group.js b/module/video_group.js index 07cb423..b415341 100644 --- a/module/video_group.js +++ b/module/video_group.js @@ -1,3 +1,5 @@ +// 视频标签/分类下的视频 + module.exports = (query, request) => { const data = { groupId: query.id, diff --git a/module/video_group_list.js b/module/video_group_list.js index 6ee4033..23e24ec 100644 --- a/module/video_group_list.js +++ b/module/video_group_list.js @@ -1,3 +1,5 @@ +// 视频标签列表 + module.exports = (query, request) => { const data = { }; diff --git a/module/video_timeline_all.js b/module/video_timeline_all.js index 8cf858f..6aa80c0 100644 --- a/module/video_timeline_all.js +++ b/module/video_timeline_all.js @@ -1,3 +1,5 @@ +// 全部视频列表 + module.exports = (query, request) => { const data = { groupId: 0, diff --git a/module/video_timeline_recommend.js b/module/video_timeline_recommend.js index 866aa6d..dcd218c 100644 --- a/module/video_timeline_recommend.js +++ b/module/video_timeline_recommend.js @@ -1,3 +1,5 @@ +// 推荐视频 + module.exports = (query, request) => { const data = { offset: query.offset || 0,