[微信小程序开发]如何去掉或隐藏小程序顶部栏navigationBar

小程序全局配置app.json增加选项:"navigationStyle": "custom",

 

具体如下:

原生小程序开发>

打开 app.json:

[微信小程序开发]如何去掉或隐藏小程序顶部栏navigationBar
{
    "pages": [
        "pages/index/index",
        "pages/logs/index"
    ],
    "window": {
        "backgroundTextStyle": "light",
        "navigationBarBackgroundColor": "#000",
        "navigationStyle": "custom",
        "navigationBarTitleText": "WeChat"
    }
}
[微信小程序开发]如何去掉或隐藏小程序顶部栏navigationBar

 

mpvue方式开发小程序>

打开 /src/main.js:

[微信小程序开发]如何去掉或隐藏小程序顶部栏navigationBar
export default {
  config: {
    pages: [
      ‘pages/logs/main‘,
      ‘^pages/index/main‘
  ], window: { backgroundTextStyle: ‘light‘, navigationBarBackgroundColor: ‘#666‘, navigationStyle: ‘custom‘, navigationBarTitleText: ‘WeChat‘, navigationBarTextStyle: ‘#fff‘, enablePullDownRefresh: false, disableScroll: true } } }

[微信小程序开发]如何去掉或隐藏小程序顶部栏navigationBar

上一篇:vue和微信小程序的区别、比较


下一篇:suse linux enterprise server 11 sp3 版克隆安装ebs r12.1.3注意事项