新讨论测试

This commit is contained in:
A1300399510
2025-02-17 19:01:09 +08:00
parent 2ad6ef4247
commit 8bf8d3ca9a
5 changed files with 262 additions and 23 deletions

View File

@@ -28,15 +28,22 @@ export const detailsHttp = query => {
export const detailsCommentListHttp = query => {
return Http.post("/api/comment/lists", query)
}
// 详情数据 - 获取子评论数据
export const detailsChildCommentListHttp = query => {
return Http.post("/api/comment/childrenList", query)
}
// 详情数据 - 提交评论
export const detailsSubmitommentListHttp = query => {
return Http.post("/api/comment/submit", query)
}
// 详情数据 - 提交评论
export const commentsEditSubmit = query => {
return Http.post("/api/comment/commentsEditSubmit", query)
}
// 评论相关 - 评论点赞
export const detailsLikeCommentHttp = query => {
return Http.post("/api/comment/like", query)