2025-07-10 20:05:35 +08:00

10 lines
185 B
TypeScript

import http from "@/utils/request";
// 获取用户信息
export const getUserInfo = () => {
return http({
url:'/api/v1/UserControllers/My',
method:'GET'
})
};