This commit is contained in:
quantulr
2023-09-01 17:14:27 +08:00
parent a09291a1c8
commit cf3e2db09d
27 changed files with 308 additions and 330 deletions

View File

@ -18,3 +18,8 @@ export const getInfo = (token?: string) =>
Authorization: token ? `Bearer ${token}` : undefined,
},
});
export const getProfile = () =>
httpClient.request({
url: "/system/user/profile",
});