117 lines
2.0 KiB
JavaScript
117 lines
2.0 KiB
JavaScript
import request from '@/utils/request'
|
|
|
|
// 登录方法
|
|
export function login(username, password, code, uuid) {
|
|
const data = {
|
|
username,
|
|
password,
|
|
code,
|
|
uuid
|
|
}
|
|
return request({
|
|
url: '/login',
|
|
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
|
|
})
|
|
}
|
|
// 获取手机验证码
|
|
export function sendCode(data) {
|
|
return request({
|
|
url: '/weChatUser/sendCode',
|
|
method: 'get',
|
|
params:data
|
|
})
|
|
}
|
|
// 获取邮箱验证码
|
|
export function sendEmailCode(data) {
|
|
return request({
|
|
url: '/weChatUser/sendEmailCode',
|
|
method: 'get',
|
|
params:data
|
|
})
|
|
}
|
|
// 注册方法
|
|
export function wxregister(data) {
|
|
return request({
|
|
url: '/weChatUser/registerUser',
|
|
headers: {
|
|
isToken: false
|
|
},
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
// 检测用户名是否已经存在
|
|
export function verifyUserName(data) {
|
|
return request({
|
|
url: '/weChatUser/verifyUserName',
|
|
method: 'get',
|
|
params:data
|
|
})
|
|
}
|
|
// 获取证件类型
|
|
export function getIdType() {
|
|
return request({
|
|
url: '/system/dict/data/type/skipToken/id_type',
|
|
method: 'get',
|
|
})
|
|
}
|
|
// 获取pc端的EIDtoken
|
|
export function selectIdentityAuthenticaEIDtoken() {
|
|
return request({
|
|
url: '/identityAuthentication/selectIdentityAuthenticaEIDtoken',
|
|
method: 'post'
|
|
})
|
|
}
|
|
// H5轮询获取E证通Token状态
|
|
export function selectPCEIDtokenStatus(data) {
|
|
return request({
|
|
url: '/identityAuthentication/selectPCEIDtokenStatus',
|
|
method: 'get',
|
|
params:data
|
|
})
|
|
}
|