You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
425 B
16 lines
425 B
import request from '@/utils/axios/index'
|
|
import { AxiosPromise } from 'axios';
|
|
import { UserInfo } from '@/api/hr/type'
|
|
|
|
|
|
/**
|
|
@ 作者: 秦东
|
|
@ 时间: 2024-10-26 13:54:02
|
|
@ 功能: 登录成功后获取用户信息(昵称、头像、权限集合和角色集合)
|
|
*/
|
|
export function getUserInfoIng(): AxiosPromise<UserInfo> {
|
|
return request({
|
|
url: '/systemapi/user/get_user_cont',
|
|
method: 'get'
|
|
});
|
|
}
|