123456789101112131415161718192021222324252627282930313233 |
- App({
- onLaunch() {
-
- const logs = wx.getStorageSync('logs') || []
- logs.unshift(Date.now())
- wx.setStorageSync('logs', logs)
-
- let token = wx.getStorageSync('token')
- let time = wx.getStorageSync('time')
- let Time = new Date()
-
- let currentTime = wx.getStorageSync('currentTime')
- if(token != ''){
- if(parseInt(Time - time)/1000 < currentTime){
- wx.switchTab({
- url: 'pages/scene/scene',
- })
- }
- else{
-
- }
- }
- wx.login({
- success: res => {
-
- }
- })
- },
- globalData: {
- userInfo: null
- },
- })
|