二、 page.json
页面的配置只要设置app.json中的Window配置项的内容,页面中配置项会覆盖app.json的Window中相同的配置项
因为只设置window相关配置项,所以无需写window这个键
相交于app.json多了disableScroll这一属性,Boolean类型,默认值为false,设置为true的话页面整体不能上下滚动
其它几个属性详见上一章中的window键,可仅设置自己需要的属性
示例:
{
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "demoPage1",
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "light"
}