This commit is contained in:
zzc
2026-06-01 19:00:17 +08:00
parent 908f3ad1b1
commit 6b3dbec68e
5 changed files with 292 additions and 0 deletions

View File

@@ -27,6 +27,19 @@ export function scoreRecordList(data) {
})
}
/**
* 评论记录
* @param {*} { pageNo, pageSize, userId?, topicId?, itemId?, trueUser? }
* @returns
*/
export function userCommentList(data) {
return request({
url: 'management/api/rating/topicItemOperate/comment/list',
method: 'get',
params: data,
})
}
/**
* 评论
* @param {*} { topicId, itemId, comment, userId }