1. 全局隐藏导航栏
pages/app.json
{
"pages": [
"pages/Home/index",
],
"window": {
"navigationStyle": "custom" // 自定义导航栏
},
"tabBar": {
"color": "#a9b7b7",
"selectedColor": "#FB7F32",
"borderStyle": "black",
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}
2. 部分页面隐藏导航栏
pages/***/index.json
{
"navigationStyle": "custom", // 隐藏导航栏
"disableScroll": true, // 禁止滚动
}
原文:https://www.cnblogs.com/gqx-html/p/13091826.html