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,一经查实,立即删除!

相关文章

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

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

【安规介绍】

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

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

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

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

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

14.Ollydbg的基本使用

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

文章解读与仿真程序复现思路——电力系统自动化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-…

数据库与缓存⼀致性⽅案

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

【移动端】商场项目路由设计

1&#xff1a;路由设计配置&#xff1a; 一级路由配置 分析项目&#xff0c;设计路由&#xff0c;配置一级路由 一级路由&#xff1a;单个页面独立展示的&#xff0c;都是一级路由&#xff0c;例如&#xff1a;登录页面&#xff0c;首页架子&#xff0c;报错页面 二级路由&…

美业SaaS收银系统源码-已过期卡项需要延期怎么操作?美业系统实操

美业SaaS系统 连锁多门店美业收银系统源码 多门店管理 / 会员管理 / 预约管理 / 排班管理 / 商品管理 / 促销活动 PC管理后台、手机APP、iPad APP、微信小程序 1.询问会员手机号和需要延期的卡项 2.PC运营后端-数据导入-修改已售卡项&#xff0c;搜索手机号 3.把需要卡项选…

深入分析 Android BroadcastReceiver (一)

文章目录 深入分析 Android BroadcastReceiver (一)1. Android BroadcastReceiver 设计说明1.1 BroadcastReceiver 的主要用途 2. BroadcastReceiver 的工作机制2.1 注册 BroadcastReceiver2.1.1 静态注册2.1.2 动态注册 3. BroadcastReceiver 的生命周期4. 实现和使用 Broadca…

C++ | Leetcode C++题解之第125题验证回文串

题目&#xff1a; 题解&#xff1a; class Solution { public:bool isPalindrome(string s) {int n s.size();int left 0, right n - 1;while (left < right) {while (left < right && !isalnum(s[left])) {left;}while (left < right && !isalnu…

三方语言中调用, Go Energy GUI编译的dll动态链接库CEF

如何在其它编程语言中调用energy编译的dll动态链接库&#xff0c;以使用CEF 或 LCL库 Energy是Go语言基于LCL CEF开发的跨平台GUI框架, 具有很容易使用CEF 和 LCL控件库 interface 便利 示例链接 正文 为方便起见使用 python 调用 go energy 编译的dll 准备 系统&#x…

【定时任务知多少, 横跨10余项目,6种实践方式】

工作多年&#xff0c;随着项目的不断研发落地&#xff0c;大大小小做了有10个项目&#xff0c;其中不少涉及到定时任务。今天来盘一下&#xff0c;这些项目中&#xff0c;定时任务的实现方式 。 通过项目的需求场景&#xff0c;可以看出定时任务需要有什么样的功能。 需求 1 …

JavaSE——集合框架二(6/6)-(案例)补充知识:集合的嵌套(需求与分析、问题解决、运行测试)

目录 案例引入 需求与分析 问题解决 运行测试 集合的嵌套 顾名思义&#xff0c;指的是集合中的元素又是一个集合。 本篇通过一个案例对这一知识进行了解&#xff1a; 案例引入 需求与分析 要求在程序中记住如下省份和其对应的城市信息&#xff0c;记录成功后&#xff0…

prometheus的rules配置

说明&#xff1a;本文介绍prometheus中的规则配置&#xff1b; 规则说明 groups:- name: MySQLAlertsrules:- alert: MysqlDownexpr: mysql_up 0for: 0mlabels:severity: criticalannotations:summary: MySQL down (实例&#xff1a;{{ $labels.instance }})description: &q…

VMware Workstation中WinXP联网问题

我一直以为我的虚拟机上的XP没有联网 因为 蒙了半天&#xff0c;发现是因为这个网址打不开&#xff0c;不是没有网 太傻了 不如在cmd命令行中通过ping baidu.com来判断是否联网