suerprisePlus
2024-05-30 d4c810f9803aa13d806724a5f4f71fe85abac38e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
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',
  });
}
 
// 检查BindID
export function checkBindId(bindId) {
  return request({
    url: '/auth/checkBindId/' + bindId,
    method: 'get',
  });
}
 
// 微信绑定获取结果信息
export function getWxBindMsg(wxBindMsgId) {
  return request({
    url: '/wechat/getWxBindMsg?wxBindMsgId=' + wxBindMsgId,
    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 socialLogin(loginId) {
  return request({
    url: '/auth/login/' + loginId,
    method: 'get',
  });
}
 
// 微信登录绑定登录
export function bindLogin(data) {
  return request({
    url: '/auth/bind/login',
    headers: {
      isToken: false,
    },
    method: 'post',
    data: data,
  });
}
 
// 三方登录注册绑定
export function bindRegister(data) {
  return request({
    url: '/auth/bind/register',
    headers: {
      isToken: false,
    },
    method: 'post',
    timeout: 20000,
    data: data,
  });
}