uniapp开发动态小程序底部tab栏及相关问题处理

种地  论坛元老 | 2025-2-14 10:29:56 | 来自手机 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 1051|帖子 1051|积分 3153

效果如下图

欢迎品鉴:

1. 删除原本page.json中的tabBar模块,以及其相应的"pages"下的tabBar页面路径,如下

  1. "tabBar": {
  2.   "color": "",
  3.   "selectedColor": "#006EFF",
  4.   "borderStyle": "black",
  5.   "backgroundColor": "#fff",
  6.   "list": [{
  7.     "pagePath": "pages/tabs/index",
  8.     "iconPath": "static/images/tabbar/icon-home.png",
  9.     "selectedIconPath": "static/images/tabbar/icon-home-selected.png",
  10.     "text": "首页"
  11.   },{
  12.     "pagePath": "pages/tabs/chatIndex",
  13.     "iconPath": "static/images/tabbar/icon-chat.png",
  14.     "selectedIconPath": "static/images/tabbar/icon-chat-selected.png",
  15.     "text": "消息"
  16.   },{
  17.     "pagePath": "pages/tabs/friendIndex",
  18.     "iconPath": "static/images/tabbar/icon-friends.png",
  19.     "selectedIconPath": "static/images/tabbar/icon-friends-selected.png",
  20.     "text": "好友"
  21.   }, {
  22.     "pagePath": "pages/tabs/personalCenter",
  23.     "iconPath": "static/images/tabbar/icon-mine.png",
  24.     "selectedIconPath": "static/images/tabbar/icon-mine-selected.png",
  25.     "text": "我的"
  26.   }]
  27. },
复制代码
此为控制底部tabBar内容的模块
2.创建唯一page页面,作为承载原先所有tabBar页面(假设有四个)的父组件(假设路径为/pages/index/index)。

3.迁移原先tabBar页面文件至组件目次,并将这些component引入/pages/index/index


  1. {
  2.       "path": "pages/index/index",
  3.       "style": {
  4.         "navigationBarTitleText": "",
  5.         "navigationStyle": "custom"//此处设置客制化标题栏
  6.       },
  7.       "usingComponents": {
  8.         "index": "/components/tabs/index",
  9.         "chatIndex": "/components/tabs/chatIndex",
  10.         "friendIndex": "/components/tabs/friendIndex",
  11.         "personalCenter": "/components/tabs/personalCenter"
  12.       }
  13.     }
复制代码
  1. /pages/index/index引入四个components
  2. import {index} from "../../components/tabs/index"
  3. import {chatIndex} from "../../components/tabs/chatIndex"
  4. import {friendIndex} from "../../components/tabs/friendIndex"
  5. 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时需要刷新数据)
    如下:
  1. onShow() {
  2.     if(this.tabFlag == 1) {
  3.     //tab1
  4.       const tab1= this.selectComponent("#tab1");
  5.       if(tab1) {
  6.       //调用相关刷新数据事件
  7.         tab1.data.getSessionList()
  8.       }
  9.     }
  10.     else if(this.tabFlag == 2) {
  11.     //tab2
  12.     }
  13.     else if(this.tabFlag == 3){
  14.     //tab3
  15.     }
  16.     else if(this.tabFlag == 4){
  17.     //tab4
  18.     }
  19.   }
复制代码


  • 使用组件通讯(不具体叙述了)
6.组件切换及动效代码示例

  1. //仅供参考
  2. <template>
  3.   <view>
  4.     <index id="index" style="height: 100%;" v-if="tabFlag == 1"></index>
  5.     <chatIndex id="chatIndex" v-if="tabFlag == 2"></chatIndex>
  6.     <friendIndex id="friendIndex" v-if="tabFlag == 3"></friendIndex>
  7.     <personalCenter id="personalCenter" v-if="tabFlag == 4"></personalCenter>
  8.     <view class="tab-bar">
  9.       <view :class="tabFlag==1 ?'tab-bar-item-selected':'tab-bar-item'" @click="tabFlag = 1">
  10.         <image class="tab-img-style" :src="tabFlag==1 ?'../../static/images/tabbar/icon-home-selected.png':'../../static/images/tabbar/icon-home.png'"></image>
  11.       </view>
  12.       <view :class="tabFlag==2 ?'tab-bar-item-selected':'tab-bar-item'" @click="tabFlag = 2">
  13.         <image class="tab-img-style" :src="tabFlag==2 ?'../../static/images/tabbar/icon-chat-selected.png':'../../static/images/tabbar/icon-chat.png'"></image></view>
  14.       <view :class="tabFlag==3 ?'tab-bar-item-selected':'tab-bar-item'" @click="tabFlag = 3">
  15.         <image class="tab-img-style" :src="tabFlag==3 ?'../../static/images/tabbar/icon-friends-selected.png':'../../static/images/tabbar/icon-friends.png'"></image></view>
  16.       <view :class="tabFlag==4 ?'tab-bar-item-selected':'tab-bar-item'" @click="tabFlag = 4">
  17.         <image class="tab-img-style" :src="tabFlag==4 ?'../../static/images/tabbar/icon-mine-selected.png':'../../static/images/tabbar/icon-mine.png'"></image></view>
  18.     </view>
  19.   </view>
  20. </template>
  21. <script>
  22. import {index} from "../../components/tabs/index"
  23. import {chatIndex} from "../../components/tabs/chatIndex"
  24. import {friendIndex} from "../../components/tabs/friendIndex"
  25. import {personalCenter} from "../../components/tabs/personalCenter"
  26. export default {
  27.   components: {chatIndex,friendIndex,index,personalCenter},
  28.   data() {
  29.     return {
  30.       tabFlag: 1,
  31.     }
  32.   },
  33.   onLoad(options) {
  34.     if(options.tabFlag){
  35.       this.tabFlag = options.tabFlag;
  36.     }
  37.   },
  38.   onShow() {
  39.     if(this.tabFlag == 1) {
  40.     }
  41.     else if(this.tabFlag == 2) {
  42.       const chatIndexComponent = this.selectComponent("#chatIndex");
  43.       if(chatIndexComponent) {
  44.         chatIndexComponent.data.getSessionList()
  45.       }
  46.     }
  47.     else if(this.tabFlag == 3){
  48.       const friendComponent = this.selectComponent("#friendIndex");
  49.       if(friendComponent){
  50.         friendComponent.data.getFriendList()
  51.       }
  52.     }
  53.     else if(this.tabFlag == 4){
  54.     }
  55.   },
  56.   methods: {
  57.   }
  58. }
  59. </script>
  60. <style lang="scss" scoped>
  61. .tab-img-style{
  62.   width: 40px;
  63.   height: 40px;
  64. }
  65. .tab-bar {
  66.   transform: translateX(7.5%);
  67.   width: 85%;
  68.   height: 70px;
  69.   position: absolute;
  70.   bottom: 10px;
  71.   background-color: #FFf;
  72.   border-radius: 40px;
  73.   display: flex;
  74.   flex-direction: row;
  75.   align-content: center;
  76.   justify-content: space-around;
  77. }
  78. .tab-bar-item{
  79.   position: relative;
  80.   display: flex;
  81.   align-items: center;
  82.   justify-content: center;
  83.   animation: moveDown 0.5s ease-in-out;
  84.   transform: translateY(0px);
  85. }
  86. .tab-bar-item:after{
  87.   position: absolute;
  88.   content: "";
  89.   width: 60px;
  90.   height: 60px;
  91.   background-color: #fff;
  92.   animation: moveDownAfter 0.5s ease-in-out;
  93.   border-radius: 30px;
  94.   transform: translateY(-5px);
  95.   z-index: -2;
  96.   opacity: 0;
  97. }
  98. .tab-bar-item-selected{
  99.   position: relative;
  100.   display: flex;
  101.   align-items: center;
  102.   justify-content: center;
  103.   border-radius: 17.5px;
  104.   animation: moveUp 0.5s ease-in-out;
  105.   transform: translateY(-20px);
  106. }
  107. .tab-bar-item-selected:after{
  108.   position: absolute;
  109.   content: "";
  110.   width: 60px;
  111.   height: 60px;
  112.   border-top:  2px solid gray;
  113.   background-color: #fff;
  114.   animation: moveUpAfter 0.5s ease-in-out;
  115.   border-radius: 30px;
  116.   transform: translateY(-5px);
  117.   z-index: -2;
  118. }
  119. @keyframes moveUp {
  120.   from {
  121.     transform: translateY(0px);
  122.   }
  123.   to {
  124.     transform: translateY(-20px);
  125.   }
  126. }
  127. @keyframes moveUpAfter {
  128.   from {
  129.     transform: translateY(0px);
  130.     border-radius: 20px;
  131.   }
  132.   to {
  133.     transform: translateY(-5px);
  134.     border-radius: 30px;
  135.   }
  136. }
  137. @keyframes moveDown {
  138.   from {
  139.     transform: translateY(-20px);
  140.   }
  141.   to {
  142.     transform: translateY(0px);
  143.   }
  144. }
  145. @keyframes moveDownAfter {
  146.   from {
  147.     transform: translateY(-5px);
  148.     border-radius: 30px;
  149.   }
  150.   to {
  151.     transform: translateY(0px);
  152.     border-radius: 20px;
  153.   }
  154. }
  155. </style>
复制代码
言尽于此!

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

种地

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表