app.js 805 B

1234567891011121314151617181920212223242526272829303132333435
  1. // app.js
  2. const storageManager = require('/utils/storage-manager.js');
  3. const api = require('./api/api.js');
  4. App({
  5. onLaunch() {
  6. wx.getSystemInfo({
  7. success: (res) => {
  8. this.globalData.height = res.statusBarHeight
  9. },
  10. })
  11. },
  12. globalData: {
  13. userInfo: null,
  14. height: 0
  15. },
  16. // 清空subPageResult缓存数据
  17. async clearSubPageResult() {
  18. await storageManager.set("subPageResult", null)
  19. },
  20. // 获取用户信息
  21. getUserDetailInfo() {
  22. wx.request({
  23. url: api.user_info,
  24. header: {
  25. 'Authorization': wx.getStorageSync('token')
  26. },
  27. success(res) {
  28. console.log(res);
  29. if (res.data.code === 1) {
  30. wx.setStorageSync('userinfo', res.data.data);
  31. }
  32. }
  33. })
  34. }
  35. })