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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
| import request from "@/plugin/axios";
| const identityApi = {
| // 获取图形验证码
| getImgCode() {
| return request({
| url: "/identity/NewCaptcha",
| method: "post",
| });
| },
|
| // 获取短信验证码
| getPhoneCode(data) {
| return request({
| url: "/identity/NewSms",
| method: "post",
| data,
| });
| },
|
| // 通过手机号注册用户
| registerAppUserWithPhone(data) {
| return request({
| url: "/identity/api/RegisterAppUserWithPhone",
| method: "post",
| data,
| });
| },
|
| // 账号密码登录
| loginByPassword(data) {
| return request({
| url: "/identity/api/LoginByPassword",
| method: "post",
| data,
| });
| },
|
| // 短信验证码登录
| loginByMobilePhone(data) {
| return request({
| url: "/identity/api/LoginByMobilePhone",
| method: "post",
| data,
| });
| },
|
| // 设置用户key
| setUserKey(data) {
| return request({
| url: "/identity/api/ApiAppUserSetKey",
| method: "post",
| data,
| });
| },
|
| // 获取用户key
| getUserKey(data) {
| return request({
| url: "/identity/api/ApiGetAppUserKey",
| method: "post",
| data,
| });
| },
|
| // 删除用户key
| delUserKey(data) {
| return request({
| url: "/identity/api/ApiDelAppUserKey",
| method: "post",
| data,
| });
| },
|
| // 获取去当前用户信息
| getCurrentAppUser() {
| return request({
| url: "/identity/api/GetCurrentAppUser",
| method: "post",
| });
| },
|
| // 添加用户信息
| setAppUserInfo(data) {
| return request({
| url: "/identity/api/SetAppUserInfoRequest",
| method: "post",
| data,
| });
| },
|
| // 检查用户微信是否注册
| chechWechatAccount(data) {
| return request({
| url: "/identity/api/CheckWeChatAccount",
| method: "post",
| data,
| });
| },
|
| // 绑定微信用户
| bindWeChat(data) {
| return request({
| url: "/identity/api/ApiBindingWeChat",
| method: "post",
| data,
| });
| },
|
| // 绑定手机号
| bindingMobilePhone(data) {
| return request({
| url: "/identity/api/ApiBindingMobilePhone",
| method: "post",
| data,
| });
| },
| // 注销账号,
| unsubscribeAppuser(data) {
| return request({
| url: "/identity/api/ApiWithdraw",
| method: "post",
| data,
| });
| }
| };
|
| export default identityApi;
|
|