app.ts 474 B

12345678910111213141516171819202122
  1. import './utils/system/index'
  2. import './services/index' // 初始化服务
  3. App({
  4. globalData: {
  5. /// iPhone底部安全区域
  6. safeBottom: 0.0,
  7. /// 窗口高度
  8. windowHeight: 0,
  9. },
  10. onLaunch() {
  11. /// 获取iPhone底部安全区域
  12. wx.getSystemInfo({
  13. success: res=> {
  14. this.globalData.safeBottom = res.screenHeight-res.safeArea.bottom
  15. this.globalData.windowHeight = res.windowHeight
  16. },
  17. fail: () => {}
  18. })
  19. },
  20. })