fix: rating

This commit is contained in:
zzc
2026-06-09 16:07:02 +08:00
parent acef084df7
commit 993b5f8eef
4 changed files with 89 additions and 28 deletions

View File

@@ -68,8 +68,8 @@ export function commentLike(data) {
/**
* 审核话题
* @param { topicId, userId, status, type, rejectReason?, auditRemark? }
* @param {*} status 2: 通过, 3: 拒绝
* @param { topicId, itemmId, userId, status, type, rejectReason?, auditRemark? }
* @param {*} status 2: 通过, 3: 拒绝 4: 禁用
* @param {*} type topic topicItem
* @param {*} rejectReason 拒绝原因
* @param {*} auditRemark 审核备注
@@ -77,7 +77,7 @@ export function commentLike(data) {
*/
export function reviewTopic(data) {
return request({
url: 'management/api/rating/topicItemOperate/review',
url: 'management/api/rating/topicItemOperate/audit',
method: 'post',
data,
})