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,  // 禁止滚动
}

  

相关文章:

  • 2021-10-16
  • 2022-02-03
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2021-05-15
  • 2021-05-20
猜你喜欢
  • 2021-06-08
  • 2022-12-23
  • 2021-12-04
  • 2022-01-07
  • 2021-04-06
相关资源
相似解决方案