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, // 禁止滾動 }