u-status-bar.vue 1.2 KB

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