当要定义导航栏,使用uni.switchTab来跳转页面时,需要将默认的导航栏进行隐藏。
比如使用 uni.hideTabBar(); 去隐藏的话,可能会有闪现出现的可能性。
我们可以在package.json当中的 tabBar加"custom": true。例:
"tabBar": {
"list": [
{
"pagePath": "pages/index/index",
"text": "首页"
},
{
"pagePath": "pages/profile/profile",
"text": "标签页"
}
],
"custom": true
},