11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
|
|
import type * as Users from "./type"
|
||
|
|
import { request } from "@/http/axios"
|
||
|
|
|
||
|
|
/** 获取当前登录用户详情 */
|
||
|
|
export function getCurrentUserApi() {
|
||
|
|
return request<Users.CurrentUserResponseData>({
|
||
|
|
url: "users/me",
|
||
|
|
method: "get"
|
||
|
|
})
|
||
|
|
}
|