feat: release

This commit is contained in:
zzc
2026-05-21 06:56:42 +08:00
parent 1107d296ce
commit b349e606fc
2 changed files with 84 additions and 50 deletions

View File

@@ -13,4 +13,11 @@ export const fetchTopicCategories = async (data) => {
url: "/api/rating/topic/category/list",
method: "GET",
});
};
};
export const fetchTopicList = async (categoryId, page = 1) => {
return request({
url: `/api/rating/topic/list/${categoryId}?page=${page}`,
method: "GET",
});
};