uniapp 怎么设置凸起的底部tabbar

1. uniapp 怎么设置凸起的底部tabbar

在这里插入图片描述

1.1. 方案一系统提供

1.1.1. 使用uniapp官方提供的属性midButton

  使用时,list数组须为偶数
(1)pages.json

"tabBar": {"custom": true,"color": "#8F8F94","selectedColor": "#007aff","borderStyle": "black","backgroundColor": "#ffffff","iconWidth": "30px","fontSize": "13px","list": [{"pagePath": "pages/main/home/home","iconPath": "static/main/icon_main_home_normal.png","selectedIconPath": "static/main/icon_main_home_select.png","text": "首页"},{"pagePath": "pages/main/apply/apply","iconPath": "static/main/icon_main_apply_normal.png","selectedIconPath": "static/main/icon_main_apply_select.png","text": "应用"},{"pagePath": "pages/main/msg/msg","iconPath": "static/main/icon_main_msg_normal.png","selectedIconPath": "static/main/icon_main_msg_select.png","text": "消息"},{"pagePath": "pages/main/mine/mine","iconPath": "static/main/icon_main_mine_normal.png","selectedIconPath": "static/main/icon_main_mine_select.png","text": "我的"}],"midButton": {"pagePath": "pages/newsList/newsList","iconPath": "static/main/icon_main_apply_normal.png","selectedIconPath": "static/main/icon_main_apply_select.png","width": "80px","height": "80px","iconWidth": "60px","iconheight": "60px","text": "会员"}},

(2)App.vue

<script>export default {onLaunch: function() {console.log('App Launch')//监听凸起页面uni.onTabBarMidButtonTap(()=>{console.log('App La345unch')uni.navigateTo({url: './pages/newsList/newsList'});})},onShow: function() {console.log('App Show')},onHide: function() {console.log('App Hide')}}
</script><style>/*每个页面公共css */
</style>

1.2. 自定义tabBar组件

1.2.1. 把pages.json里的 “custom”: true,

  新建组件tabBar.vue
在这里插入图片描述
(1)tab-bar.vue

<template><view class="tab-layout"><ul class='tab-ul-layout':class="showMiddleButton === true?'tab-item-middle':'tab-item-default'"><li v-for="(item, index) in tabList"class="tab-item-normal":class="item.middleClass"@click="handlePush(item, index)":key="index"><view class="item-img-box"><image class="item-img":src="tabIndex == index ?item.selectedIconPath : item.iconPath"/></view><view :class="tabIndex == index?'tab-item-title-select item-text2':'tab-item-title-normal item-text'">{{item.text}}</view></li></ul></view>
</template><script>export default {props: {tabIndex: { //当前选中的tab项type: String,default: 0}},data() {return {/** iconPath: 默认icon图片路径* selectedIconPath: 选中icon图片路径* text: tab按钮文字* pagePath:页面路径* middleClass:中间按钮样式类名* tabList最小两项,最多五项* tabList长度为奇数时,中间按钮才会突出显示**/tabList: [{iconPath: '/static/main/icon_main_home_normal.png',selectedIconPath: '/static/main/icon_main_home_select.png',text: '首页',pagePath: '/pages/main/home/home',middleClass: ''},{iconPath: '/static/main/icon_main_apply_normal.png',selectedIconPath: '/static/main/icon_main_apply_select.png',text: '审批',pagePath: '/pages/main/approval/approval',middleClass: ''},{iconPath: '/static/main/icon_main_apply_normal.png',selectedIconPath: '/static/main/icon_main_apply_select.png',text: '工作台',pagePath: '/pages/main/apply/apply',middleClass: 'tab-item-middle'},{iconPath: '/static/main/icon_main_msg_normal.png',selectedIconPath: '/static/main/icon_main_msg_select.png',text: '消息',pagePath: '/pages/main/msg/msg',},{iconPath: '/static/main/icon_main_mine_normal.png',selectedIconPath: '/static/main/icon_main_mine_select.png',text: '我的',pagePath: '/pages/main/mine/mine',middleClass: ''}],showMiddleButton: false,};},computed: {getHeight() {return Number(this.height);},},mounted() {},methods: {//点击按钮handlePush(item, index) {if (this.tabIndex !== index) {// uni.reLaunch({//     url: `${item.pagePath}?tabIndex=${index}`,// })uni.switchTab({url: `${item.pagePath}?tabIndex=${index}`,});}},}}
</script><style lang="scss">.tab-layout{width: 100vw;}.tab-ul-layout {align-items: center;justify-content: center;height: 80px;padding: 0; //解决偏移display: flex;flex-flow: row wrap;position: fixed;bottom: 0;left: 0;z-index: 999;background-size: contain;width: 100vw;}.tab-item-default {background-color: #FFFFFF;border-top: 1px #dddddd solid;}.tab-item-middle {position: relative;/*background-image: url("https://res/nav_bar_bg_2x.png");*//*background-repeat: no-repeat;*/background-size: cover;}.tab-item-normal {flex: 1;flex-direction: column;align-items: center;display: flex;.item-img-box {width: 44px;height: 42px;margin-bottom: 1px;position: relative;}.item-img {width: 44px;height: 42px;}.item-text {}.item-text2 {}}.tab-item-middle {position: relative;.item-img-box {position: absolute;width: 106px;height: 106px;z-index: 1002;bottom: 1px;}.item-img {width: 106px;height: 106px;}.item-text {position: absolute;z-index: 1002;bottom: -20px;}.item-text2 {position: absolute;z-index: 1002;bottom: -20px;}}.tab-item-title-normal {font-size: 20px;color: #333333;}.tab-item-title-select {font-size: 20px;color: #007aff;}</style></style>

(2)pages.json

{"pages": [//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages{"path": "pages/main/home/home","style": {"navigationBarTitleText": "","enablePullDownRefresh": false,"navigationStyle": "custom"}},{"path": "pages/main/msg/msg","style": {"navigationBarTitleText": "","enablePullDownRefresh": false,"navigationStyle": "custom"}},{"path": "pages/main/work/work","style": {"navigationBarTitleText": "","enablePullDownRefresh": false}},{"path": "pages/main/mine/mine","style": {"navigationBarTitleText": "","enablePullDownRefresh": false,"navigationStyle": "custom"}},{"path": "pages/main/apply/apply","style": {"navigationBarTitleText": "","enablePullDownRefresh": false,"navigationStyle": "custom"}},{"path": "pages/index/index","style": {"navigationBarTitleText": "uni-app"}},{"path": "pages/newsList/newsList","style": {"navigationBarTitleText": "","enablePullDownRefresh": false}},{"path" : "pages/main/approval/approval","style" :{"navigationBarTitleText" : "","enablePullDownRefresh" : false}}],"tabBar": {"custom": true,"color": "#8F8F94","selectedColor": "#007aff","borderStyle": "black","backgroundColor": "#ffffff","iconWidth": "30px","fontSize": "13px","list": [{"pagePath": "pages/main/home/home","iconPath": "static/main/icon_main_home_normal.png","selectedIconPath": "static/main/icon_main_home_select.png","text": "首页"},{"pagePath": "pages/main/apply/apply","iconPath": "static/main/icon_main_apply_normal.png","selectedIconPath": "static/main/icon_main_apply_select.png","text": "应用"},{"pagePath": "pages/main/approval/approval","iconPath": "static/main/icon_main_apply_normal.png","selectedIconPath": "static/main/icon_main_apply_select.png","text": "工作台"},{"pagePath": "pages/main/msg/msg","iconPath": "static/main/icon_main_msg_normal.png","selectedIconPath": "static/main/icon_main_msg_select.png","text": "消息"},{"pagePath": "pages/main/mine/mine","iconPath": "static/main/icon_main_mine_normal.png","selectedIconPath": "static/main/icon_main_mine_select.png","text": "我的"}]},"globalStyle": {"navigationBarTextStyle": "black","navigationBarTitleText": "uni-app","navigationBarBackgroundColor": "#F8F8F8","backgroundColor": "#F8F8F8"},"uniIdRouter": {}
}

(3)home.vue

<template><view class="content"><view class="text-area"><text class="title">{{title}}</text><text class="title2">{{title}}</text><text class="title2">{{title}}</text><text class="title2">{{title}}</text><text class="title2">{{title}}</text><text class="title2">{{title}}</text><text class="title2">{{title}}</text><text class="title2">{{title}}</text></view><tabBar class="my" tabIndex=0></tabBar></view>
</template><script>import tabBar from '../../../components/tab-bar'export default {components: {tabBar},data() {return {title: '我是首页'}},onLoad() {},methods: {}}
</script><style>
.my{ width: 100vw}
.text-area {display: flex;flex-direction: column;justify-content: center;
}
.title {font-size: 36rpx;color: #8f8f94;
}
.title2 {font-size: 36rpx;color: #8f8f94;margin-top: 300rpx;
}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/846180.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C语言 入门例子和代码学习

下面提供一些C语言的入门示例代码&#xff0c;并附有注释&#xff0c;以帮助理解每个部分的功能。 1. Hello World程序 #include <stdio.h> // 引入标准输入输出库 int main() { // 主函数的开始 printf("Hello, World!\n"); // 打印 "Hello, Wo…

HTML的标签(标题、段落、文本、图片、列表)

HTML的标签1 标题标签&#xff1a;段落标签&#xff1a;文本标签&#xff1a;图片标签:列表标签&#xff1a;有序列表&#xff1a;无序列表&#xff1a;定义列表&#xff1a;列表案例&#xff1a; 标题标签&#xff1a; 标签&#xff1a;h1~h6 注意&#xff1a;如果使用无效标…

运维相关知识

一、运维需要关注 服务器的哪些数据&#xff1f; 1. CPU 1.1 CPU使用率&#xff1a; top&#xff0c;vmstat (1) 用户CPU使用率&#xff1a;用户态程序的使用率。top 命令 us 字段和 nice字段 (低优先级) (2) 系统CPU使用率&#xff1a;内核态程序的使用率。top 命令 sy 字…

【前端每日基础】day32——节流和防抖

节流&#xff08;Throttle&#xff09;和防抖&#xff08;Debounce&#xff09;是两个在前端开发中常用的技术&#xff0c;它们用于控制某些函数的执行频率&#xff0c;以提升性能和用户体验。虽然两者的目标相似&#xff0c;但实现方式和适用场景有所不同。 一、节流&#xf…

【安规介绍】

文章目录 一、基础知识安规上的六类危险的防护&#xff1a;安全电压漏电流接触电流能量问题&#xff1a;火灾问题&#xff1a;热问题结构问题阻燃等级绝缘等级&#xff1a;对接地系统的要求&#xff1a;结构要求:电气要求&#xff1a; 二、设计的关键电气绝缘距离电气爬电距离:…

Python 关于加密和解密

1、理解 加密是通过使用各种加密算法来对数据进行加密和解密的过程。Python 提供了许多内置库和第三方库&#xff0c;可以用于实现各种加密算法和技术&#xff0c;包括对称加密、非对称加密、哈希函数等。以下是 Python 中常用的一些加密相关的库和模块&#xff1a; hashlib …

Python知识点14---被规定的资源

提前说一点&#xff1a;如果你是专注于Python开发&#xff0c;那么本系列知识点只是带你入个门再详细的开发点就要去看其他资料了&#xff0c;而如果你和作者一样只是操作其他技术的Python API那就足够了。 在Python中被规定的东西不止有常识中的那些关键字、构造器等编程语言…

Python知识点4---循环语句

提前说一点&#xff1a;如果你是专注于Python开发&#xff0c;那么本系列知识点只是带你入个门再详细的开发点就要去看其他资料了&#xff0c;而如果你和作者一样只是操作其他技术的Python API那就足够了。 Python支持两种循环for和while&#xff0c;但是他们和其他的语言有些…

乡村振兴与农村环境整治:加强农村环境治理,改善农村人居环境,打造干净整洁、生态宜居的美丽乡村

目录 一、引言 二、农村环境整治的重要性 1、提升农民生活质量 2、促进农村经济发展 3、保护农村生态环境 三、当前农村环境面临的问题 1、垃圾处理不当 2、污水处理设施缺乏 3、农业面源污染严重 四、加强农村环境治理的措施 1、完善农村垃圾处理体系 2、加强农村…

14.Ollydbg的基本使用

上一个内容&#xff1a;13.优化界面化的游戏辅助 Ollydbg是一个调试工具&#xff0c;它可以一步一步的运行一个程序并且还能很直观的看到被调试程序的寄存器状态、栈状态。Ollydbg需要以管理员方式运行&#xff01; 下图附加程序是调试一个正在运行的进程&#xff1a; 点击了…

STM32F103借助ESP8266连接网络

ESP8266配置 STM32F103本身是不具备联网功能的&#xff0c;所以我们必须借助其他单片机来进行联网&#xff0c;然后让STM32与联网单片机通信&#xff0c;就可以实现STM32联网了。 本文借助的是ESP8266模块&#xff0c;其通过UART协议与STM32通信&#xff08;http://t.csdnimg.c…

文章解读与仿真程序复现思路——电力系统自动化EI\CSCD\北大核心《考虑动态定价的新能源汽车能源站优化运行》

本专栏栏目提供文章与程序复现思路&#xff0c;具体已有的论文与论文源程序可翻阅本博主免费的专栏栏目《论文与完整程序》 论文与完整源程序_电网论文源程序的博客-CSDN博客https://blog.csdn.net/liang674027206/category_12531414.html 电网论文源程序-CSDN博客电网论文源…

Nacos-SpringBoot-配置中心

Nacos配置中心 前情回顾 上一章呢 了解并且学习了Nacos服务注册与发现 在一系列破防中走了出来Nacos服务注册完成https://blog.csdn.net/m0_68711597/article/details/139265244?spm1001.2014.3001.5502 本以为接下来会一帆风顺 一马平川 没想刚出坑 又入坑 Nacos的配置…

Prime1 - 信息收集和分析能力的试炼

主机发现 nmap扫描与分析 端口22、80 详细扫描&#xff1b;linux、ubuntu、 udp扫描 端口都是关闭的 脚本扫描 web渗透 打开只有一张图片&#xff1b;源码有图片和一个alt&#xff1a;hnp security不知道有啥用&#xff0c;先记录下来吧 继续web渗透思路走吧&#xff0c;目录…

[Python]用Qt6和Pillow实现截图小工具

本文章主要讲述的内容是&#xff0c;使用python语言借助PyQt6和Pillow库进行简单截图工具的开发&#xff0c;含义一个简单的范围裁剪和软件界面。 主要解决的问题是&#xff0c;在高DPI显示屏下&#xff0c;坐标点的偏差导致QWidget显示图片不全、剪裁范围偏差问题。 适合有一点…

vivado BD_ADDR_SEG

按字母顺序排列的一类对象列表 BD_ADDR_SEG 描述 地址段或bd_addr_seg对象描述一个范围的位置和大小记忆力它们有一个范围&#xff08;大小&#xff09;和一个可选的起始偏移。对于各种内存映射的主接口和从接口&#xff0c;IP集成商遵循行业用于捕获存储器要求和能力的标准IP-…

爬楼梯 - LeetCode 热题 81

大家好&#xff01;我是曾续缘&#x1f607; 今天是《LeetCode 热题 100》系列 发车第 81 天 动态规划第 1 题 ❤️点赞 &#x1f44d; 收藏 ⭐再看&#xff0c;养成习惯 爬楼梯 假设你正在爬楼梯。需要 n 阶你才能到达楼顶。 每次你可以爬 1 或 2 个台阶。你有多少种不同的方法…

Android Kotlin 打开相册选择图片(多选)

1. 核心代码 打开系统相册功能&#xff0c;本代码使用两种方式打开本地相册&#xff0c;startActivityForResult 已经废弃&#xff0c;可以使用新的方式。 package com.example.facedetectordemoimport android.content.pm.PackageManager import androidx.appcompat.app.App…

【人工智能004】文本挖掘算法模型实战及经验总结(最近更新中)

1.熟悉、梳理、总结数据分析实战中的文本挖掘领域实战研发知识体系&#xff0c;这块领域很大&#xff0c;需要耗费很多精力&#xff0c;逐步总结、更新到位&#xff0c;&#xff0c;&#xff0c; 2.欢迎点赞、关注、批评、指正&#xff0c;互三走起来&#xff0c;小手动起来&am…

数据库与缓存⼀致性⽅案

数据库与缓存⼀致性⽅案 1、背景2、数据⼀致性⽅案设计3、数据⼀致性⽅案流程图4、关键代码4.1、 处理数据⼀致性的消息队列⼊⼝4.2、数据⼀致性配置的常量信息 1、背景 现有的业务场景下&#xff0c;都会涉及到数据库以及缓存双写的问题&#xff0c;⽆论是先删除缓存&#xf…