fix: my info

This commit is contained in:
zzc
2026-01-30 18:50:33 +08:00
parent da85fa655d
commit 34a06794f9
2 changed files with 124 additions and 22 deletions

View File

@@ -14,3 +14,11 @@ export const getUserInfo = async () => {
method: "GET",
});
};
export const updateUserInfo = async (body) => {
return request({
url: "/api/user/info",
method: "PUT",
data: body,
});
};