2024-08-07 10:31:42 +08:00
|
|
|
<!-- 自定义状态栏 -->
|
|
|
|
<template>
|
2024-10-11 16:07:43 +08:00
|
|
|
<view :style="{ height: statusBarHeight }" class="uni-status-bar" :class="navBg? 'ss' : ''">
|
|
|
|
<slot />
|
|
|
|
</view>
|
2024-08-07 10:31:42 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
2024-10-11 16:07:43 +08:00
|
|
|
import sheep from '@/sheep';
|
|
|
|
const props = defineProps({
|
|
|
|
navBg: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
const statusBarHeight = sheep.$platform.device.statusBarHeight - 2 + 'px';
|
2024-08-07 10:31:42 +08:00
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
2024-10-11 16:07:43 +08:00
|
|
|
.uni-status-bar {
|
|
|
|
// width: 750rpx;
|
|
|
|
height: var(--status-bar-height);
|
|
|
|
}
|
|
|
|
.ss {
|
|
|
|
background: rgba(248, 83, 42);
|
|
|
|
}
|
|
|
|
</style>
|