12345678910111213141516171819202122232425262728293031 |
- <template>
- <view :style="{ height: statusBarHeight,backgroundColor: bgColor }" class="uni-status-bar">
- <slot />
- </view>
- </template>
- <script>
- var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px'
- export default {
- name: 'UniStatusBar',
- data() {
- return {
- statusBarHeight: statusBarHeight
- }
- },
- props:{
- bgColor: {
- type: String,
- default: ""
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .uni-status-bar {
- width: 750rpx;
- height: 20px;
- // height: var(--status-bar-height);
- }
- </style>
|