怎样让tabBar在所有页面显示?
发布于 6 年前 作者 chao86 3140 次浏览 来自 官方Issues

我定义了一个tabBar,但是这个tabBar只能在首页和日志页显示,怎样才能让tabBar在所有页面显示呢?

app.json中内容如下

"tabBar": {
   "list": [{
     "pagePath": "pages/index/index",
     "text": "首页",
     "iconPath": "/images/home.png",
     "selectedIconPath": "/images/home-selected.png"
   },{
     "pagePath": "pages/logs/logs",
     "text": "日志",
     "iconPath": "images/logs.png",
     "selectedIconPath": "images/logs-selected.png"
   }
 ]
 },
3 回复

自定义组件   满足你的需求

你这样做是反移动设计的。这还是网页header的设计思想。

要所有页面有只能自己写tabbar

回到顶部