app.js 638 B

1234567891011121314151617181920212223242526272829303132
  1. // app.js
  2. App({
  3. onLaunch() {
  4. // 展示本地存储能力
  5. const logs = wx.getStorageSync('logs') || []
  6. logs.unshift(Date.now())
  7. wx.setStorageSync('logs', logs)
  8. // 登录
  9. wx.login({
  10. success: res => {
  11. // 发送 res.code 到后台换取 openId, sessionKey, unionId
  12. }
  13. })
  14. },
  15. onShow(opts) {
  16. this.globalData.sceneData = {
  17. path: opts.path,
  18. query: opts.query
  19. }
  20. if (!wx.getStorageSync('token') || !wx.getStorageSync('userInfo')) {
  21. wx.reLaunch({
  22. url: '/pages/login/login',
  23. })
  24. // login(opts)
  25. }
  26. },
  27. globalData: {
  28. userInfo: null
  29. }
  30. })