fix: lucky page

This commit is contained in:
zzc
2026-02-24 20:55:13 +08:00
parent 59fa05c341
commit 90e7f000c8
2 changed files with 38 additions and 15 deletions

View File

@@ -7,6 +7,20 @@ export const getAvatarSystemList = async (page = 1) => {
});
};
export const getAvatarSystemCategoryList = async () => {
return request({
url: `/api/blessing/avatar/system/category/list`,
method: "GET",
});
};
export const getAvatarSystemListByCategory = async (categoryId, page = 1) => {
return request({
url: `/api/blessing/avatar/system/list?categoryId=${categoryId}&page=${page}`,
method: "GET",
});
};
export const getAvatarDecorList = async (page = 1) => {
return request({
url: `/api/blessing/avatar/decor/list?page=${page}`,