App.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <script>
  2. export default {
  3. globalData: {
  4. statusBarHeight: 0, // 状态导航栏高度
  5. navHeight: 44, // 总体高度
  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. // this.$wxApi.config()
  24. },
  25. onShow: function() {
  26. // console.log('App Show')
  27. },
  28. onHide: function() {
  29. // console.log('App Hide')
  30. }
  31. }
  32. </script>
  33. <style lang="scss">
  34. /*每个页面公共css */
  35. @import "@/uni_modules/uview-ui/index.scss";
  36. @import "@/static/css/common.scss";
  37. </style>