You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
307 B
17 lines
307 B
<template>
|
|
<view class="header_tops_tip" :style="{height: statusHeight + 'px'}">
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
const info = uni.getSystemInfoSync()
|
|
const statusHeight = info.statusBarHeight
|
|
</script>
|
|
|
|
<style scoped>
|
|
.header_tops_tip {
|
|
/* background: #fff; */
|
|
background: #e6eafa;
|
|
}
|
|
</style> |