fix: add robot score

This commit is contained in:
zzc
2026-07-04 18:31:37 +08:00
parent 93da905e1d
commit 7d62377380
2 changed files with 128 additions and 2 deletions

View File

@@ -58,3 +58,16 @@ export function getPendingList(data) {
params: data,
})
}
/**
* 给某个分数段投票
* @param {topicId: string, itemId: string, score: number, count: number} data
* @returns
*/
export function ItemScorevote(data) {
return request({
url: 'management/api/rating/topicItem/vote/robot',
method: 'post',
data,
})
}