u-status-bar.vue 1.3 KB

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