mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-27 17:51:55 +08:00
28 lines
452 B
Vue
28 lines
452 B
Vue
<template>
|
|
<view :style="{ height: statusBarHeight }" class="uni-status-bar">
|
|
<slot />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'UniStatusBar',
|
|
data() {
|
|
return {
|
|
statusBarHeight: 20
|
|
}
|
|
},
|
|
mounted() {
|
|
this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px'
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" >
|
|
.uni-status-bar {
|
|
// width: 750rpx;
|
|
height: 20px;
|
|
// height: var(--status-bar-height);
|
|
}
|
|
</style>
|