fix: main avatar page

This commit is contained in:
zzc
2026-01-28 23:21:10 +08:00
parent 0dcd70d2f0
commit adb5f00988
4 changed files with 575 additions and 0 deletions

View File

@@ -21,3 +21,10 @@ export const getMyWallpaper = async (page = 1) => {
method: "GET",
});
};
export const getMyAvatar = async (page = 1) => {
return request({
url: "/api/blessing/my/avatar?page=" + page,
method: "GET",
});
};