App.vue 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <script>
  2. import Vue from 'vue'
  3. // import app from './utils/api.js'
  4. export default {
  5. onLaunch: function() {
  6. uni.getSystemInfo({
  7. success: function (res) {
  8. Vue.prototype.screenHeight=res.screenHeight
  9. Vue.prototype.screenWidth=res.screenWidth
  10. if (uni.getMenuButtonBoundingClientRect()) {
  11. console.log('小程序');
  12. // 小程序状态栏是指显示电量的那一小部分
  13. thisWechat(res.statusBarHeight)
  14. }else{
  15. console.log('app');
  16. thisApp(res.statusBarHeight)
  17. }
  18. }
  19. });
  20. function thisWechat(statusBarHeight){
  21. // 获取胶囊位置
  22. let meunButtonInfo=uni.getMenuButtonBoundingClientRect()
  23. // console.log(meunButtonInfo);
  24. Vue.prototype.meunButtonInfo=meunButtonInfo.height
  25. // 计算出导航栏高度+动态栏
  26. let allHeight = meunButtonInfo.bottom + (meunButtonInfo.top - statusBarHeight )*2;
  27. // console.log(allHeight);
  28. let navheight;
  29. Vue.prototype.navheight=allHeight
  30. // 按钮离顶
  31. let alltop = meunButtonInfo.top
  32. Vue.prototype.navTop=alltop
  33. // 动态栏高度
  34. let statusHeight
  35. Vue.prototype.statusHeight=statusBarHeight
  36. };
  37. function thisApp(statusBarHeight){
  38. // console.log(uni.getSystemInfoSync());
  39. // 导航栏高度
  40. // let appAllHeight;console.log();
  41. // Vue.prototype.appAllHeight=statusBarHeight+44+'px';
  42. // console.log(statusBarHeight);
  43. let customBarHeight;
  44. if (uni.getSystemInfoSync().platform === 'android') {
  45. customBarHeight = statusBarHeight + 50;
  46. } else if (uni.getSystemInfoSync().platform === 'ios') {
  47. // iOS 平台
  48. // 在这里根据 iOS 平台的特性计算自定义状态栏高度
  49. // ...
  50. customBarHeight = statusBarHeight + 45;
  51. } else {
  52. // 其他平台
  53. // ...
  54. customBarHeight = statusBarHeight;
  55. }
  56. // console.log(customBarHeight);
  57. Vue.prototype.customBar = customBarHeight;
  58. }
  59. },
  60. onLoad() {
  61. }
  62. }
  63. </script>
  64. <style>
  65. /*每个页面公共css */
  66. body{
  67. background-color: #f0f2f5;
  68. }
  69. view{
  70. box-sizing: border-box;
  71. padding: 0;
  72. }
  73. </style>