IT评测·应用市场-qidao123.com
标题:
uniapp开发动态小程序底部tab栏及相关问题处理
[打印本页]
作者:
种地
时间:
2025-2-14 10:29
标题:
uniapp开发动态小程序底部tab栏及相关问题处理
效果如下图
欢迎品鉴:
1. 删除原本page.json中的tabBar模块,以及其相应的"pages"下的tabBar页面路径,如下
"tabBar": {
"color": "",
"selectedColor": "#006EFF",
"borderStyle": "black",
"backgroundColor": "#fff",
"list": [{
"pagePath": "pages/tabs/index",
"iconPath": "static/images/tabbar/icon-home.png",
"selectedIconPath": "static/images/tabbar/icon-home-selected.png",
"text": "首页"
},{
"pagePath": "pages/tabs/chatIndex",
"iconPath": "static/images/tabbar/icon-chat.png",
"selectedIconPath": "static/images/tabbar/icon-chat-selected.png",
"text": "消息"
},{
"pagePath": "pages/tabs/friendIndex",
"iconPath": "static/images/tabbar/icon-friends.png",
"selectedIconPath": "static/images/tabbar/icon-friends-selected.png",
"text": "好友"
}, {
"pagePath": "pages/tabs/personalCenter",
"iconPath": "static/images/tabbar/icon-mine.png",
"selectedIconPath": "static/images/tabbar/icon-mine-selected.png",
"text": "我的"
}]
},
复制代码
此为控制底部tabBar内容的模块
2.创建唯一page页面,作为承载原先所有tabBar页面(假设有四个)的父组件(假设路径为/pages/index/index)。
3.迁移原先tabBar页面文件至组件目次,并将这些component引入/pages/index/index
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"//此处设置客制化标题栏
},
"usingComponents": {
"index": "/components/tabs/index",
"chatIndex": "/components/tabs/chatIndex",
"friendIndex": "/components/tabs/friendIndex",
"personalCenter": "/components/tabs/personalCenter"
}
}
复制代码
/pages/index/index引入四个components
import {index} from "../../components/tabs/index"
import {chatIndex} from "../../components/tabs/chatIndex"
import {friendIndex} from "../../components/tabs/friendIndex"
import {personalCenter} from "../../components/tabs/personalCenter"
复制代码
4.由于各个component是没有标题栏的,所以需要自定义标题栏,这也是最开始为什么需要客制化/pages/index/index页面标题栏的步调(开发客制化标题栏自行百度,难度较低)
5.处理各个component原先onload及onshow事件
在uniapp中,组件原先的onLoad事件可在各自component中用created事件代替,但是组件不含onShow事件,以下提供一种办理方式及一种思路:
将非必要事件转入created中触发,在/pages/index/index中处理所有必要onShow事件(如其他页面返回/pages/index/index的某个tab时需要刷新数据)
如下:
onShow() {
if(this.tabFlag == 1) {
//tab1
const tab1= this.selectComponent("#tab1");
if(tab1) {
//调用相关刷新数据事件
tab1.data.getSessionList()
}
}
else if(this.tabFlag == 2) {
//tab2
}
else if(this.tabFlag == 3){
//tab3
}
else if(this.tabFlag == 4){
//tab4
}
}
复制代码
使用组件通讯(不具体叙述了)
6.组件切换及动效代码示例
//仅供参考
<template>
<view>
<index id="index" style="height: 100%;" v-if="tabFlag == 1"></index>
<chatIndex id="chatIndex" v-if="tabFlag == 2"></chatIndex>
<friendIndex id="friendIndex" v-if="tabFlag == 3"></friendIndex>
<personalCenter id="personalCenter" v-if="tabFlag == 4"></personalCenter>
<view class="tab-bar">
<view :class="tabFlag==1 ?'tab-bar-item-selected':'tab-bar-item'" @click="tabFlag = 1">
<image class="tab-img-style" :src="tabFlag==1 ?'../../static/images/tabbar/icon-home-selected.png':'../../static/images/tabbar/icon-home.png'"></image>
</view>
<view :class="tabFlag==2 ?'tab-bar-item-selected':'tab-bar-item'" @click="tabFlag = 2">
<image class="tab-img-style" :src="tabFlag==2 ?'../../static/images/tabbar/icon-chat-selected.png':'../../static/images/tabbar/icon-chat.png'"></image></view>
<view :class="tabFlag==3 ?'tab-bar-item-selected':'tab-bar-item'" @click="tabFlag = 3">
<image class="tab-img-style" :src="tabFlag==3 ?'../../static/images/tabbar/icon-friends-selected.png':'../../static/images/tabbar/icon-friends.png'"></image></view>
<view :class="tabFlag==4 ?'tab-bar-item-selected':'tab-bar-item'" @click="tabFlag = 4">
<image class="tab-img-style" :src="tabFlag==4 ?'../../static/images/tabbar/icon-mine-selected.png':'../../static/images/tabbar/icon-mine.png'"></image></view>
</view>
</view>
</template>
<script>
import {index} from "../../components/tabs/index"
import {chatIndex} from "../../components/tabs/chatIndex"
import {friendIndex} from "../../components/tabs/friendIndex"
import {personalCenter} from "../../components/tabs/personalCenter"
export default {
components: {chatIndex,friendIndex,index,personalCenter},
data() {
return {
tabFlag: 1,
}
},
onLoad(options) {
if(options.tabFlag){
this.tabFlag = options.tabFlag;
}
},
onShow() {
if(this.tabFlag == 1) {
}
else if(this.tabFlag == 2) {
const chatIndexComponent = this.selectComponent("#chatIndex");
if(chatIndexComponent) {
chatIndexComponent.data.getSessionList()
}
}
else if(this.tabFlag == 3){
const friendComponent = this.selectComponent("#friendIndex");
if(friendComponent){
friendComponent.data.getFriendList()
}
}
else if(this.tabFlag == 4){
}
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.tab-img-style{
width: 40px;
height: 40px;
}
.tab-bar {
transform: translateX(7.5%);
width: 85%;
height: 70px;
position: absolute;
bottom: 10px;
background-color: #FFf;
border-radius: 40px;
display: flex;
flex-direction: row;
align-content: center;
justify-content: space-around;
}
.tab-bar-item{
position: relative;
display: flex;
align-items: center;
justify-content: center;
animation: moveDown 0.5s ease-in-out;
transform: translateY(0px);
}
.tab-bar-item:after{
position: absolute;
content: "";
width: 60px;
height: 60px;
background-color: #fff;
animation: moveDownAfter 0.5s ease-in-out;
border-radius: 30px;
transform: translateY(-5px);
z-index: -2;
opacity: 0;
}
.tab-bar-item-selected{
position: relative;
display: flex;
align-items: center;
justify-content: center;
border-radius: 17.5px;
animation: moveUp 0.5s ease-in-out;
transform: translateY(-20px);
}
.tab-bar-item-selected:after{
position: absolute;
content: "";
width: 60px;
height: 60px;
border-top: 2px solid gray;
background-color: #fff;
animation: moveUpAfter 0.5s ease-in-out;
border-radius: 30px;
transform: translateY(-5px);
z-index: -2;
}
@keyframes moveUp {
from {
transform: translateY(0px);
}
to {
transform: translateY(-20px);
}
}
@keyframes moveUpAfter {
from {
transform: translateY(0px);
border-radius: 20px;
}
to {
transform: translateY(-5px);
border-radius: 30px;
}
}
@keyframes moveDown {
from {
transform: translateY(-20px);
}
to {
transform: translateY(0px);
}
}
@keyframes moveDownAfter {
from {
transform: translateY(-5px);
border-radius: 30px;
}
to {
transform: translateY(0px);
border-radius: 20px;
}
}
</style>
复制代码
言尽于此!
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/)
Powered by Discuz! X3.4