u-status-bar.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view
  3. :style="[style]"
  4. class="u-status-bar"
  5. >
  6. <slot />
  7. </view>
  8. </template>
  9. <script>
  10. import props from './props.js';
  11. /**
  12. * StatbusBar 状态栏占位
  13. * @description 本组件主要用于状态填充,比如在自定导航栏的时候,它会自动适配一个恰当的状态栏高度。
  14. * @tutorial https://uviewui.com/components/statusBar.html
  15. * @property {String} bgColor 背景色 (默认 'transparent' )
  16. * @property {String | Object} customStyle 自定义样式
  17. * @example <u-status-bar></u-status-bar>
  18. */
  19. export default {
  20. name: 'u-status-bar',
  21. mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
  22. data() {
  23. return {
  24. }
  25. },
  26. computed: {
  27. style() {
  28. const style = {}
  29. // 状态栏高度,由于某些安卓和微信开发工具无法识别css的顶部状态栏变量,所以使用js获取的方式
  30. style.height = uni.$u.addUnit(uni.$u.sys().statusBarHeight, 'px')
  31. style.backgroundColor = this.bgColor
  32. return uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle))
  33. }
  34. },
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. .u-status-bar {
  39. // nvue会默认100%,如果nvue下,显式写100%的话,会导致宽度不为100%而异常
  40. /* #ifndef APP-NVUE */
  41. width: 100%;
  42. /* #endif */
  43. }
  44. </style>