first commit

This commit is contained in:
zzc
2026-04-24 10:20:50 +08:00
commit 49f4a1d6cc
96 changed files with 10456 additions and 0 deletions

40
api/mine.js Normal file
View File

@@ -0,0 +1,40 @@
import { request } from "@/utils/request.js";
export const sendFeedback = async (data) => {
return request({
url: "/api/common/feedback",
method: "POST",
data,
});
};
export const getMyCard = async (page = 1) => {
return request({
url: "/api/blessing/my/card?page=" + page,
method: "GET",
});
};
export const getMyWallpaper = async (page = 1) => {
return request({
url: "/api/blessing/my/wallpaper?page=" + page,
method: "GET",
});
};
export const getMyAvatar = async (page = 1) => {
return request({
url: "/api/blessing/my/avatar?page=" + page,
method: "GET",
});
};
export const userAvatarChange = async (imageUrl) => {
return request({
url: "/api/blessing/user/avatar/change",
method: "POST",
data: {
imageUrl,
},
});
};