{
"pages": [{
"path": "pages/index/login",
"style": {
// 自定义导航
"navigationStyle": "custom",
// 修改状态栏背景无效
"navigationBarBackgroundColor": "#fff",
"enablePullDownRefresh": false
}
}, {
"path": "pages/tabbar/student",
"style": {
"navigationStyle": "custom",
"navigationBarBackgroundColor": "#fff",
"enablePullDownRefresh": true
}
}, {
"path": "pages/tabbar/teacher",
"style": {
"navigationStyle": "custom",
"navigationBarBackgroundColor": "#fff",
"enablePullDownRefresh": true
}
}],
"globalStyle": {
// 修改状态栏背景无效
"navigationBarTextStyle": "white",
"navigationBarBackgroundColor": "#fff",
"navigationStyle": "custom",
"backgroundColor": "#fff",
"backgroundColorTop": "#ffff",
"backgroundColorBottom": "#fff",
"enablePullDownRefresh": true,
"app-plus": {
"background": "#ffff",
"titleNView": {
"backgroundColor": "#fff"
}
}
},
"tabBar": {
"borderStyle": "#333",
"backgroundColor": "#FFF",
"color": "#888",
"selectedColor": "#000",
"list": [{
"pagePath": "pages/tabbar/student",
"iconPath": "static/img/tabbar/home.png",
"selectedIconPath": "static/img/tabbar/homeactive.png",
"text": "首页"
},
{
"pagePath": "pages/tabbar/teacher",
"iconPath": "static/img/tabbar/guanzhu.png",
"selectedIconPath": "static/img/tabbar/guanzhuactive.png",
"text": "关注"
}
]
}
}
// 在manifset.json中添加此代码无效
"statusbar": {
"immersed": "none"
},
// app中添加此代码无效
plus.navigator.setStatusBarStyle('UIStatusBarStyleBlackOpaque');
plus.navigator.setStatusBarBackground('#fff');