| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- 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',
- })
- }
|