效果如下图
欢迎品鉴:
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.组件切换及动效代码示例
言尽于此!
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |