app.js 484 B

12345678910111213141516171819202122232425262728
  1. // app.js
  2. import api from './utils/api'
  3. App({
  4. onLaunch() {
  5. // 展示本地存储能力
  6. const logs = wx.getStorageSync('logs') || []
  7. logs.unshift(Date.now())
  8. wx.setStorageSync('logs', logs)
  9. // 登录
  10. wx.login({
  11. success: res => {
  12. // 发送 res.code 到后台换取 openId, sessionKey, unionId
  13. }
  14. })
  15. // wx.setTabBarBadge({
  16. // index: 2,
  17. // text: '2'
  18. // })
  19. },
  20. globalData: {
  21. userInfo: null
  22. },
  23. api: api
  24. })