删除仓库

This commit is contained in:
hanchaobo
2024-02-29 14:16:54 +08:00
parent 53ca46a5f5
commit 20c062fcef
348 changed files with 0 additions and 33742 deletions
-86
View File
@@ -1,86 +0,0 @@
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 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
})
}