app.js 406 B

12345678910111213141516171819202122
  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. },
  16. globalData: {
  17. userInfo: null
  18. },
  19. api:api
  20. })