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.
33 lines
523 B
33 lines
523 B
1 year ago
|
import api from './index'
|
||
|
// axios
|
||
|
import request from '@/utils/request'
|
||
|
|
||
|
// 登录
|
||
|
export function login(data) {
|
||
|
return request({
|
||
|
url: api.Login,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 用户信息 post 方法
|
||
|
export function getUserInfo(data) {
|
||
|
return request({
|
||
|
url: api.UserInfo,
|
||
|
method: 'post',
|
||
|
data,
|
||
|
hideloading: true
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 用户名称 get 方法
|
||
|
export function getUserName(params) {
|
||
|
return request({
|
||
|
url: api.UserName,
|
||
|
method: 'get',
|
||
|
params,
|
||
|
hideloading: true
|
||
|
})
|
||
|
}
|