10 lines
185 B
TypeScript
Raw Normal View History

2025-07-06 16:08:38 +08:00
import http from "@/utils/request";
2025-07-06 20:45:20 +08:00
// 获取用户信息
export const getUserInfo = () => {
2025-07-06 16:08:38 +08:00
return http({
2025-07-10 20:05:35 +08:00
url:'/api/v1/UserControllers/My',
2025-07-06 16:08:38 +08:00
method:'GET'
})
2025-07-06 20:45:20 +08:00
};