app.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import login from './utils/login'
  2. import * as httpUtil from "./utils/httpUtil";
  3. const app = getApp()
  4. App({
  5. onLaunch() {
  6. // 展示本地存储能力
  7. const logs = wx.getStorageSync('logs') || []
  8. logs.unshift(Date.now())
  9. wx.setStorageSync('logs', logs)
  10. //获取设备顶部窗口的高度(不同设备窗口高度不一样,根据这个来设置自定义导航栏的高度
  11. wx.getSystemInfo({
  12. success: (res) => {
  13. this.globalData.client = {
  14. // 窗口宽度和高度
  15. windowWidth: res.windowWidth,
  16. windowHeight: res.windowHeight,
  17. // 状态栏高度
  18. statusBarHeight: res.statusBarHeight
  19. }
  20. }
  21. })
  22. },
  23. globalData: {
  24. userInfo: {},
  25. // 微信用户openid,sessionKey
  26. wxInfo: {},
  27. client: {},
  28. publicUrl: 'https://broadcast.waityou24.cn',
  29. // 图片请求接口
  30. fileUrl: "http://broadcast.waityou24.cn",
  31. // 图片显示接口
  32. imageUrl: "http://broadcast.waityou24.cn",
  33. },
  34. // 微信openid回调
  35. toLogin: login.toLogin,
  36. ...httpUtil
  37. })