-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathapp.js
474 lines (436 loc) · 9.17 KB
/
app.js
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
import api from '@/config/api.js';
/**
* tabBarUrl
*/
const tabBarUrl = [
'/pages/article/index',
'/pages/user/favorites',
'/pages/user/index'
];
const objectToUrlParams = function(obj) {
var str = "";
for (var key in obj) {
str += "&" + key + "=" + obj[key];
}
return str.substr(1);
}
/**
* 是否登录
*/
const isLogin = function() {
if (uni.getStorageSync("isLogin") == "1") {
return true;
}
return false;
}
/**
* 初始化登录
*/
const initLogin = function() {
if (!isLogin()) {
login();
}
}
/**
* 登录
*/
const login = function() {
/*清除登录缓存*/
uni.removeStorageSync('isLogin');
uni.removeStorageSync('accessToken');
uni.removeStorageSync('currentUser');
uni.removeStorageSync('platform');
/*储存当前页*/
let pages = getCurrentPages();
let currentPage = pages[pages.length - 1];
let originUrl = '/' + currentPage.route;
// #ifdef H5
let urlParam = objectToUrlParams(currentPage.$route.query)
if (urlParam) {
originUrl = originUrl + '?' + urlParam;
}
// #endif
uni.setStorageSync('loginOriginUrl', originUrl); //存储跳转前URL
// #ifdef MP-WEIXIN
uni.navigateTo({
url: '/pages/wechat/miniAppLogin'
})
// #endif
// #ifndef MP-WEIXIN
if (getPlatform() == 'wechatMP') {
initMPLogin(); //公众号登录
} else {
uni.navigateTo({
url: '/pages/common/login'
})
}
// #endif
}
/*微信小程序登录初始化*/
const wechatAppLoginInit = function() {
/*检测是否授权*/
uni.getSetting({
success: function(res) {
/* 已经授权直接登录*/
if (res.authSetting['scope.userInfo']) {
wechatAppLogin(false); //登录
} else {
uni.navigateTo({
url: '/pages/wechat/miniAppLogin'
})
}
}
});
}
/*微信小程序登录*/
const wechatAppLogin = function(isBack = false) {
/*登录提示*/
uni.showLoading({
title: "正在登录",
mask: true
});
/*微信登录*/
uni.login({
provider: 'weixin',
success: loginResult => {
let code = loginResult.code;
/*获取用户信息*/
uni.getUserInfo({
success: result => {
/*获取分享id*/
let share_user_id = uni.getStorageSync('share_user_id');
share_user_id = share_user_id > 0 ? share_user_id : 0;
/*登录验证*/
request({
url: api.wechat.miniAppLogin,
data: {
share_user_id: share_user_id,
code: code,
user_info: result.rawData,
encrypted_data: result.encryptedData,
iv: result.iv,
signature: result.signature
},
method: 'POST',
dataType: 'json',
success: res => {
if (res.code == 0) {
/*更新登录状态,保存用户数据*/
let userInfo = res.data;
uni.setStorageSync("isLogin", '1');
uni.setStorageSync("accessToken", userInfo.token);
uni.setStorageSync('currentUser', userInfo);
uni.setStorageSync('platform', 'wechatMiniApp');
uni.setStorageSync('source', 'login');
if (userInfo.is_exist_user == 0) {
uni.setStorageSync('register', 1);
}
/*switchTab刷新*/
let originUrl = uni.getStorageSync('loginOriginUrl');
if (originUrl) {
let originUrlRoute = originUrl.split('?');
if (tabBarUrl.includes(originUrlRoute[0])) {
uni.switchTab({
url: originUrlRoute[0]
})
} else {
uni.navigateBack();
}
} else {
/*登录后跳转*/
if (isBack) {
uni.navigateBack();
}
}
} else {
alert(res.msg, 'warning');
}
}
});
},
fail: result => {
uni.hideLoading();
}
});
}
});
}
/*微信公众号登录*/
const initMPLogin = function() {
/*获取登录验证url*/
let url = location.href.split('/pages/');
let loginUrl = '';
if (url.length > 1) {
loginUrl = url[0] + '/pages/wechat/mpLogin';
} else {
loginUrl = url[0] + 'pages/wechat/mpLogin';
}
/*获取分享id*/
let share_user_id = uni.getStorageSync('share_user_id');
share_user_id = share_user_id > 0 ? share_user_id : 0;
/*拼装url*/
location.href = api.wechat.mpLogin + '?url=' + encodeURIComponent(loginUrl) + '&share_user_id=' + share_user_id;
}
/*检查是否有操作权限*/
const checkAuth = function() {
request({
url: api.user.checkAuth,
data: {},
method: 'POST',
dataType: 'json',
success: res => {
}
});
}
/*绑定手机号码*/
const bindMobile = function() {
uni.navigateTo({
url: '/pages/user/bindMobile'
})
}
/*获取来源url*/
const getSourcePage = function() {
let pages = getCurrentPages();
if (pages.length >= 2) {
let currentPage = pages[pages.length - 2];
let originUrl = '/' + currentPage.route;
return originUrl;
} else {
return '';
}
}
/**
* 网络请求
* @param {Object} req
*/
const request = function(req) {
let accessToken = uni.getStorageSync("accessToken");
let platform = getPlatform();
let header = {
'platform': platform,
'token': accessToken,
'Content-type': 'application/x-www-form-urlencoded'
};
if (req.header) {
header = Object.assign(header, req.header);
}
uni.request({
url: req.url,
data: req.data || {},
header: header,
method: req.method || "GET",
dataType: req.dataType || "json",
success: function(res) {
if (res.data.code == '1000') {
login(); //登录
} else if (res.data.code == '1003') {
bindMobile(); //绑定手机号码
} else {
if (req.success) {
req.success(res.data);
}
}
},
fail: function(res) {
uni.showToast({
title: '网络异常~',
icon: 'none'
});
if (req.fail) {
req.fail(res);
}
},
complete: function(res) {
if (res.statusCode != 200) {
if (res.code == '1000') {
login();
}
}
if (req.complete) {
req.complete(res);
}
}
});
}
/*上传文件*/
const uploadFile = function(req) {
let accessToken = uni.getStorageSync("accessToken");
let platform = getPlatform();
let header = {
'platform': platform,
'token': accessToken
};
if (req.header) {
header = Object.assign(header, req.header);
}
uni.uploadFile({
url: req.url,
filePath: req.filePath,
header: header,
name: req.name || 'file',
formData: req.formData || {},
success: (res) => {
if (res.data.code == '1000') {
login(); //登录
} else if (res.data.code == '1003') {
bindMobile(); //绑定手机号码
} else {
if (req.success) {
req.success(JSON.parse(res.data));
}
}
},
fail: (res) => {
console.warn('--- request fail >>>');
console.warn(res);
console.warn('<<< request fail ---');
uni.showToast({
title: '网络异常~',
icon: 'none'
});
if (req.fail) {
req.fail(res);
}
},
complete: (res) => {
if (res.statusCode != 200) {
if (res.code == '1000') {
login();
}
}
if (req.complete) {
req.complete(res);
}
}
});
}
/*获取平台类型 */
const getPlatform = function() {
let platform = uni.getStorageSync('platform');
// #ifdef MP-WEIXIN
platform = 'wechatMiniApp'; //微信小程序
// #endif
// #ifdef H5
if (!platform) {
platform = 'h5'; //H5
}
// #endif
// #ifdef APP-PLUS
if (uni.getSystemInfoSync().platform == 'ios') {
platform = 'ios';
} else {
platform = 'android';
}
// #endif
return platform;
}
/*无状态提示信息*/
const alert = function(msg = '', icon = 'none', url = '', openType = 'navigate') {
/*消息强制转字符串*/
if (typeof(msg) != 'string') {
msg = msg.toString();
}
if (msg.length > 7) {
//长度超过7个字符,用示模态弹窗展示
uni.showModal({
title: '提示',
content: msg,
showCancel: false
});
} else {
if (icon == 'warning') {
uni.showToast({
title: msg,
image: "/static/images/icon-warning.png"
});
} else {
uni.showToast({
title: msg,
icon: icon
})
}
}
if (url || openType == 'back') {
setTimeout(() => {
if (openType == 'redirect') {
uni.redirectTo({
url: url
});
} else if (openType == 'switchTab') {
uni.switchTab({
url: url
});
} else if (openType == 'reLaunch') {
uni.reLaunch({
url: url
});
} else if (openType == 'back') {
uni.navigateBack();
} else {
uni.navigateTo({
url: url
});
}
}, 1500)
}
};
/*弹出加载框*/
const loading = function(msg = '', mask = true) {
/*消息强制转字符串*/
if (typeof(msg) != 'string') {
msg = msg.toString();
}
uni.showLoading({
title: msg,
mask: mask
})
};
/*是否微信浏览器*/
const isWechat = function() {
// #ifndef H5
return false;
// #endif
// #ifdef H5
let ua = window.navigator.userAgent.toLowerCase();
if (ua.match(/micromessenger/i) == 'micromessenger') {
return true;
} else {
return false;
}
// #endif
};
/*获取平台类型 */
const getNaviBarHeight = function() {
let height = '90rpx';
// #ifdef MP
let device = uni.getSystemInfoSync();
if (device.system.indexOf('iOS') > -1) {
if (device.model.indexOf('iPhone X') > -1) {
height = '44px;margin-top: 25px;padding-bottom: 5px;';
} else {
height = '44px';
}
} else {
height = '48px';
}
// #endif
return height;
}
export default {
tabBarUrl,
isLogin,
initLogin,
login,
wechatAppLogin,
initMPLogin,
request,
uploadFile,
alert,
loading,
isWechat,
getNaviBarHeight,
getPlatform,
getSourcePage,
checkAuth,
bindMobile
};