1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view class="uni-status-bar" :style="{ height: statusBarHeight,background:bgcolor}">
- <slot></slot>
- </view>
- </template>
- <script>
- var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
- export default {
- name: 'uni-status-bar',
- props:{
- bgcolor:{
- type:String,
- default:''
- }
- },
- data() {
- return {
- statusBarHeight: statusBarHeight
- };
- }
- };
- </script>
- <style>
- .uni-status-bar {
- display: block;
- width: 100%;
- height: 20px;
- height: var(--status-bar-height);
- }
- </style>
|