-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
51 lines (46 loc) · 1.27 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
// app.js
App({
onLaunch() {
// 展示本地存储能力
const logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
// 登录
// wx.login({
// success (res) {
// if (res.code) {
// //发起网络请求
// wx.request({
// url: 'http://localhost:8000/mini/login',
// data: {
// code: res.code
// },
// success:(res)=>{
// const {flag,data,message}=res.data;
// if(!flag){
// wx.showToast({
// title: message,
// icon: 'error',
// duration: 2000
// })
// }
// wx.setStorageSync('token', `${data.tokenHead} ${data.token}`)
// wx.setStorageSync('userInfo', data.userInfo)
// wx.setStorageSync('openid', data.openid)
// },
// fail:(err)=>{
// console.log('请求失败',err);
// }
// })
// } else {
// console.log('登录失败!' + res.errMsg)
// }
// }
// })
},
globalData: {
userInfo: null,
url: 'http://localhost:8000',
token: null,
},
})