删除文件 ruoyi-ui

This commit is contained in:
疯狂的狮子li
2020-02-13 10:47:14 +08:00
committed by Gitee
parent a7fa51303b
commit abdb1048ed
208 changed files with 0 additions and 14052 deletions

View File

@ -1,40 +0,0 @@
import request from '@/utils/request'
// 登录方法
export function login(username, password, code, uuid) {
const data = {
username,
password,
code,
uuid
}
return request({
url: '/login',
method: 'post',
params: data
})
}
// 获取用户详细信息
export function getInfo() {
return request({
url: '/getInfo',
method: 'get'
})
}
// 退出方法
export function logout() {
return request({
url: '/logout',
method: 'post'
})
}
// 获取验证码
export function getCodeImg() {
return request({
url: '/captchaImage',
method: 'get'
})
}