app.js 403 B

1234567891011121314151617
  1. // app.js
  2. App({
  3. onLaunch() {
  4. /* 计算tabbar+iphone安全距离 tabbar页面+100rpx*/
  5. let safeAreaBottom = 0;
  6. wx.getSystemInfo({
  7. success(res) {
  8. safeAreaBottom += res.screenHeight - res.safeArea.height;
  9. }
  10. })
  11. this.globalData.safeAreaBottom = safeAreaBottom;
  12. },
  13. globalData: {
  14. safeAreaBottom: 0,//底部安全距离
  15. accountList:{},//角色列表
  16. }
  17. })