Feat:店铺资讯评论

This commit is contained in:
LinCyJang
2025-06-22 18:51:27 +08:00
parent 491aa8d0a3
commit fd7793b3fb
6 changed files with 1533 additions and 53 deletions
+13
View File
@@ -273,4 +273,17 @@ export function getMerchantApply() {
return request.get("/merchantApply/userHotels", {}, {login: true})
}
/**
* 获取用户评论列表
*/
export function getCommentList(params) {
return request.get("/user/reply/list", params, {login: true})
}
/**
* 添加用户评论
*/
export function addComment(data) {
return request.post("/user/reply/add", data, {login: true})
}