Files
shgx_tz_mes_backend_sync/ZR.Vue/src/api/system/login.js

41 lines
622 B
JavaScript
Raw Normal View History

2021-08-23 16:57:25 +08:00
import request from '@/utils/request'
// 登录方法
export function login(username, password, code, uuid) {
const data = {
username,
password,
code,
uuid
}
return request({
url: '/login',
method: 'POST',
data: data,
})
}
// 获取用户详细信息
export function getInfo() {
return request({
url: '/getInfo',
method: 'get'
})
}
// 退出方法
2021-12-04 18:05:20 +08:00
export function logout() {
2021-08-23 16:57:25 +08:00
return request({
url: '/LogOut',
method: 'POST'
})
}
// 获取验证码
export function getCodeImg() {
return request({
url: '/captchaImage',
method: 'get'
})
}