1:去掉导航栏
"navigationStyle":"custom"
打开pages.json配置文件,找到自定义导航栏的页面,在页面的style里面设置导航栏样式navigationStyle属性。
2:导航栏搜索框
在导航栏里面,可以看到有些顶部导航栏需要一个搜索框的,类似于这样的,实现起来也很简单,需要在pages.json配置文件文件里面进行配置即可。
{
"path": "pages/main/main",
"style": {
"navigationBarTitleText": "首页",
"app-plus": {
"bounce": "none",
"titleNView": {
"buttons": [
{
"text": "补卡",
"fontSize":"15",
"float": "right",
"color":"#fff"
},
{
"text": "通知",
"fontSize":"15",
"float": "left",
"color":"#fff"
}
],
"searchInput":{
"align": "center",
"placeholder": "2020-01-06",
"borderRadius":"50upx",
"backgroundColor": "#fff"
}
}
}
}
}