当前位置: 首页 > article >正文

uniapp 设置安全区域

<!-- 获取安全区域 -->
<script setup lang="ts">
import { computed, ref } from 'vue'

let systemType = ref('1')
// #ifdef APP-PLUS || H5  || APP-PLUS-NVUE
systemType.value = '1'
const { safeAreaInsets } = uni.getSystemInfoSync()
console.log(safeAreaInsets, 'safeAreaInsets')
const prop = defineProps({
  title: {
    type: String,
    default: '消息',
  },
})
// #endif

// #ifdef MP-WEIXIN
systemType.value = '2'
const navbarHeight = ref(0)
//计算刘海状态栏
navbarHeight.value = uni.getSystemInfoSync().statusBarHeight || 0
//计算胶囊区域的高度
let { top, height } = uni.getMenuButtonBoundingClientRect()
const titleBarHeight = computed(() => {
  return (top - navbarHeight.value) * 2 + height
})
// #endif
</script>

<template>
  <view v-if="systemType == '1'" class="navbar" :style="{ paddingTop: safeAreaInsets?.top + 'rpx' }">
    <view class="search">{{ title }}</view>
  </view>
  <view v-if="systemType == '2'">
    <view class="fill" :style="{ height: navbarHeight + 'px' }"></view>
    <view class="title" :style="{ height: titleBarHeight + 'px' }"> 消息 </view>
  </view>
</template>

<style lang="scss">
.navbar {
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  // .leftBack {
  //   position: absolute;
  //  top: 200rpx;
  // }
  .search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rpx 10rpx 0 26rpx;
    height: 64rpx;
    line-break: 64rpx;
    //ui标记距离上面22rpx
    margin: 44rpx 20rpx 0 20rpx;
    color: #1f1f1f;
    font-weight: 600;
    font-size: 28rpx;
    border-radius: 32rpx;
  }
}
.fill {
  width: 100%;
}
.title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
</style>

uniapp 设置安全区域以及导航栏和胶囊对齐 要注意app没有胶囊没法获取 要另外写样式(已完善)

ps:真就是每个公司总有那么几个表现狗 真他妈的恶心 得拓展一下自己的知识宽度 找下家了

 


http://www.kler.cn/a/391660.html

相关文章:

  • (干货)Jenkins使用kubernetes插件连接k8s的认证方式
  • IEC60870-5-104 协议源码架构详细分析
  • 简述 synchronized 和 java.util.concurrent.locks.Lock 的异同?
  • Camera Tuning中AE/AWB/AF基础知识介绍
  • linux 下查看程序启动的目录
  • 【知识科普】SPA单页应用程序介绍
  • Hadoop(HDFS)
  • R语言机器学习与临床预测模型69--机器学习模型解释利器:SHAP
  • 《青牛科技 GC6150:驱动芯片的璀璨之星,重塑摇头机性能(可替代 TMI8150)》
  • Vue中如何构建组件,支持传参、插槽等功能。
  • 从经典到应用:探索 AlexNet 神经网络
  • C#画图板上色功能的详细示例代码
  • 将C++搭建的简单HTTP服务器升级为 HTTPS 服务器
  • RabbitMQ高效的消息队列中间件原理及实践
  • 【AliCloud】ack + ack-secret-manager + kms 敏感数据安全存储
  • Elasticsearch中什么是倒排索引?
  • 前端页面性能优化的常见问题与解决方案
  • 死信交换机,延迟队列和惰性队列
  • 电脑监控如何多画面显示?3大方法带你玩转多屏一画,实现管理效率翻倍涨!
  • Mac 安装protobuf2.5.0
  • C++(Qt)软件调试---静态分析工具cppcheck(22)
  • LLMs之Code:Github Spark的简介、安装和使用方法、案例应用之详细攻略
  • C# DataTable使用Linq查询详解
  • 2024最新版JavaScript逆向爬虫教程-------基础篇之Proxy与Reflect详解
  • 知识见闻 - 苹果手机拨号键长按
  • C# 字典应用