statusBar.vue 377 B

1234567891011121314151617
  1. <template>
  2. <view :style="{height: SBH}"></view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. // 获取手机状态栏的高度,状态栏就是手机上面时间信号电池等那一栏,安卓苹果各不相同,所以得通过js获取系统信息进行计算
  9. SBH: uni.getSystemInfoSync().statusBarHeight + 'px'
  10. }
  11. }
  12. }
  13. </script>
  14. <style>
  15. </style>