fix(other): 修正了获取用户信息后端接口

This commit is contained in:
黄磊 2025-02-26 20:10:02 -05:00
parent 6efeaa4209
commit 784fa1ef8e

View File

@ -27,7 +27,7 @@ export function fetchLogin(userName: string, password: string) {
/** Get user info */
export function fetchGetUserInfo() {
return request<Api.Auth.UserInfo>({ url: '/auth/getUserInfo' });
return request<Api.Auth.UserInfo>({ url: '/user/getUserInfo' });
}
/**