zjf
2023-03-08 51468f93275c2bcfcc7ad25bf05f3d6a079ff764
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
import request from '@/utils/request'
 
export function requestverify (data) {
  return request({
    url: '/Account/Verify',
    method: 'get'
  })
}
 
export function CreateVerifyCode (token) {
  return request({
    url: '/Account/CreateVerifyCode?verify=' + token,
    method: 'get',
    responseType: 'arraybuffer'
  })
}
 
export function requestLogin (data) {
  return request({
    url: '/Account/Login',
    method: 'post',
    data: data
  })
}
 
export function FindPassword (data) {
  return request({
    url: '/Account/FindPassword',
    method: 'post',
    data: data
  })
}
 
export function FindPasswordStep2 (data) {
  return request({
    url: '/Account/FindPasswordStep2',
    method: 'post',
    data: data
  })
}
 
export function FindPasswordStep3 (data) {
  return request({
    url: '/Account/FindPasswordStep3',
    method: 'post',
    data: data
  })
}
export function WxLogin (code) {
  return request({
    url: '/Account/WxLogin?code=' + code,
    method: 'get'
  })
}
 
export function CheckLogin (token) {
  return request({
    url: '/Account/CheckLogin',
    method: 'post',
    data: token
  })
}