QUICK FIND

搜索站点内容

输入关键词开始搜索,无需连接服务器。

⌘ K 随时打开,按 Esc 关闭

uniapp隐藏自带顶部

uniapp隐藏自带顶部

全部隐藏

pages.json中

{
        ......
	"globalStyle": {
                 ......
		"navigationStyle": "custom"
                ......
	}
        ......
}

部分平台隐藏,比如小程序显示顶部,h5页面隐藏顶部

方法1 推荐

pages.json 文件中中

{
        ......
	"globalStyle": {
                 ......
		// #ifdef H5
		"navigationStyle": "custom",
		// #endif
		// #ifndef H5
		"navigationStyle": "default",
		// #endif
                ......
	}
        ......
}
 

方法2

// pages.json中
{
        ......
	"globalStyle": {
                 ......
		"navigationStyle": "default"
                ......
	}
        ......
}

// App.vue中设置全局样式
/* #ifdef H5 */
    uni-page-head {
        display: none;
    }
/* #endif */

Conversation

讨论这篇内容

评论由 GitHub Discussions 提供 · 打开讨论仓库