mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-uniapp
synced 2025-08-09 00:42:43 +08:00
20 lines
583 B
Vue
20 lines
583 B
Vue
![]() |
<route lang="json5">
|
|||
|
{
|
|||
|
style: { navigationBarTitleText: '自定义导航栏', navigationStyle: 'custom' },
|
|||
|
}
|
|||
|
</route>
|
|||
|
|
|||
|
<template>
|
|||
|
<fly-navbar />
|
|||
|
<view class="bg-green-300 min-h-20" :style="{ paddingTop: safeAreaInsets?.top + 'px' }">
|
|||
|
<view class="p-4"> 自定义导航栏,设置"navigationStyle":"custom" </view>
|
|||
|
<view class="p-4"> 通常页面顶部有一个图片或背景色 </view>
|
|||
|
</view>
|
|||
|
<fly-content :line="20" />
|
|||
|
</template>
|
|||
|
|
|||
|
<script lang="ts" setup>
|
|||
|
// 获取屏幕边界到安全区域距离
|
|||
|
const { safeAreaInsets } = uni.getSystemInfoSync()
|
|||
|
</script>
|