App.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <script>
  2. export default {
  3. globalData: {
  4. statusBarHeight: 0, // 状态导航栏高度
  5. navHeight: 0, // 总体高度
  6. navigationBarHeight: 0, // 导航栏高度(标题栏高度)
  7. },
  8. onLaunch: function() {
  9. // console.log('App Launch')
  10. // 状态栏高度
  11. this.globalData.statusBarHeight = uni.getSystemInfoSync().statusBarHeight
  12. // #ifdef MP-WEIXIN
  13. // 获取微信胶囊的位置信息 width,height,top,right,left,bottom
  14. const custom = wx.getMenuButtonBoundingClientRect()
  15. // console.log(custom)
  16. // 导航栏高度(标题栏高度) = 胶囊高度 + (顶部距离 - 状态栏高度) * 2
  17. this.globalData.navigationBarHeight = custom.height + (custom.top - this.globalData.statusBarHeight) * 2
  18. // console.log("导航栏高度:"+this.globalData.navigationBarHeight)
  19. // 总体高度 = 状态栏高度 + 导航栏高度
  20. this.globalData.navHeight = this.globalData.navigationBarHeight + this.globalData.statusBarHeight
  21. // #endif
  22. // console.log('this.globalData==========',this.globalData)
  23. },
  24. onShow: function() {
  25. // console.log('App Show')
  26. },
  27. onHide: function() {
  28. // console.log('App Hide')
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. /*每个页面公共css */
  34. @import "@/uni_modules/uview-ui/index.scss";
  35. @import "@/static/css/common.scss";
  36. </style>