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.

80 lines
1.3 KiB

import request from "@/utils/request";
import { encrypt } from "@/utils/jsencrypt";
// 登录方法
export function login(username, password, code, uuid) {
// password = encrypt(password); //密码加密
const data = {
username,
password,
code,
uuid,
};
return request({
url: "/login",
headers: {
isToken: false,
repeatSubmit: false,
},
method: "post",
data: data,
});
}
export function login2(username, password, code, uuid) {
// password = encrypt(password); //密码加密
const data = {
username,
password,
code,
uuid,
};
return request({
url: "/loginnocaptcha",
headers: {
isToken: false,
},
method: "post",
data: data,
});
}
// 注册方法
export function register(data) {
return request({
url: "/register",
headers: {
isToken: false,
},
method: "post",
data: 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",
headers: {
isToken: false,
},
method: "get",
timeout: 20000,
});
}