-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathapp.js
142 lines (141 loc) · 4.5 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
//app.js
const tabBarLinks = [
"/pages/index",
"/pages/search/index",
"/pages/me/index"
];
App({
data() {
return {
backgroundHeight: '',
statusBarHeight: ''
}
},
onLaunch: function () {
let that = this;
// 获取用户手机信息
wx.getSystemInfo({
success: res => {
this.globalData.systemInfo = res;
// 判断是否为 iPhone X
this.globalData.isIpx = res.model.search("iPhone X") != -1;
let isIOS = res.system.indexOf('iOS') > -1
let navHeight = 0
if (!isIOS) {
navHeight = 48
} else {
navHeight = 44
}
this.data.backgroundHeight = res.windowHeight
this.data.statusBarHeight = res.statusBarHeight + navHeight
}
});
// 尝试使用 unionId 登录
wx.login({
success: res => {
this.globalData.code = res.code;
// 发送 res.code 到后台换取 openId, sessionKey, unionId
wx.request({
url: "https://xuegushi.com/wxxcx/userInfo",
data: {
code: this.globalData.code,
systemInfo: this.globalData.systemInfo
},
success: function (res) {
if (res.data && !res.data.status) {
console.log("----------success------------");
wx.setStorageSync("user", res.data);
wx.setStorageSync("wx_token", res.data.wx_token);
that.globalData.userInfo = res.data;
} else {
try {
wx.removeStorageSync("user");
wx.removeStorageSync("closeTipsStatus");
wx.removeStorageSync("wx_token");
} catch (e) {
// Do something when catch error
console.log("--clear storage fail---");
}
}
}
});
}
});
// 版本更新------
const updateManager = wx.getUpdateManager();
// 强制更新
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
// console.log(res.hasUpdate)
if (!res.hasUpdate) {
console.log("-----无更新---");
}
});
// 更新完成
updateManager.onUpdateReady(function () {
wx.showModal({
title: "更新提示",
content: "新版本已经准备好,是否重启应用?",
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
}
}
});
});
// 更新失败
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
wx.showToast({
title: "更新失败",
icon: "none",
duration: 2000
});
});
// 版本更新部分结束------
},
// 如果找不到页面就跳转到首页
onPageNotFound(res) {
wx.switchTab({
url: "pages/index"
});
},
/**
* 获取tabBar页面路径列表
*/
getTabBarLinks() {
return tabBarLinks;
},
/**
* 跳转到指定页面
* 支持tabBar页面
*/
navigationTo(url) {
if (!url || url.length == 0) {
return false;
}
let tabBarLinks = this.getTabBarLinks();
// tabBar页面
if (tabBarLinks.indexOf(url) > -1) {
wx.switchTab({
url: "/" + url
});
} else {
// 普通页面
wx.navigateTo({
url: "/" + url
});
}
},
globalData: {
userInfo: null, // 用户信息
code: null,
systemInfo: null, // 手机系统配置信息
user: null,
hot: null,
domain: "https://xuegushi.com/wxxcx",
url: "https://xuegushi.com",
backUrl: {}
}
});