fix:rating

This commit is contained in:
zzc
2026-06-08 10:34:47 +08:00
parent 27c244f3cd
commit 65cef99610
4 changed files with 11 additions and 3 deletions

View File

@@ -40,3 +40,11 @@ export const fetchTopicRatingItems = async (topicId, page = 1) => {
method: "GET",
});
};
// 获取当前用户参与的话题列表
export const fetchUserTopics = async (page = 1) => {
return request({
url: `/api/rating/personal/topic/list?page=${page}`,
method: "GET",
});
};