用于设置小程序的状态栏、导航条、标题、窗口背景色。
navigationBarBackgroundColor HexColor #000000 导航栏背景颜色,如 #000000
navigationBarTextStyle String white 导航栏标题颜色,仅支持 black / white
navigationBarTitleText String 导航栏标题文字内容
wepy框架里面不能直接在app里面设置,需要在使用的页面里面设置,否则不会显示
backgroundColor HexColor #ffffff 窗口的背景色
当我们在微信小程序json中设置backgroundColor 时,实际在电脑的模拟器中根本看不到效果。
这是因为 backgroundColor 指的窗体背景颜色,而不是页面的背景颜色,即窗体下拉刷新或上拉加载时露出的背景。在电脑的模拟器中是看不到这个动作的,所以会让人误以为这个配置是无效的。
backgroundTextStyle String dark 下拉 loading 的样式,仅支持 dark / light
backgroundColorTop String #ffffff 顶部窗口的背景色,仅 iOS 支持 微信客户端 6.5.16
backgroundColorBottom String #ffffff 底部窗口的背景色,仅 iOS 支持 微信客户端 6.5.16
enablePullDownRefresh Boolean false 是否开启当前页面的下拉刷新。
详见 Page.onPullDownRefresh
onReachBottomDistance Number 50 页面上拉触底事件触发时距页面底部距离,单位为px。
详见 Page.onReachBottom
pageOrientation String portrait 屏幕旋转设置,仅支持 auto / portrait
详见 响应显示区域变化 微信客户端 6.7.3
用例:
window: { // 导航栏背景颜色 "navigationBarBackgroundColor": "#FF6666", // 导航栏标题颜色,仅支持 black / white "navigationBarTextStyle": "white", // 航栏样式,仅支持以下值: default, custom 自定义导航栏,只保留右上角胶囊按钮 "navigationStyle": "default", // 窗口的背景色 "backgroundColor": "#e5e5e5", // 下拉 loading 的样式,仅支持 dark / light "backgroundTextStyle": "dark", // 屏幕旋转设置,仅支持 auto / portrait "pageOrientation": "portrait", }
如果小程序是一个多tab应用(客户端窗口的底部或顶部有 tab 栏可以切换页面),可以通过tabBar配置项指定tab栏的表现,以及tab切换时显示的对应页面。
list 接受一个数组,只能配置最少2个、最多5个 tab。tab 按数组的顺序排序,每个项都是一个对象,其属性值如下:
用例:
tabBar: { color: '#666666', selectedColor: '#ff6600', position: 'bottom', backgroundColor: '#fff', borderStyle: 'black', list: [ { pagePath: 'pages/home/index', text: '首页', iconPath: 'assets/img/icon-1.png', selectedIconPath: 'assets/img/icon-1-selected.png' }, { pagePath: 'pages/search/index', text: '搜索', iconPath: 'assets/img/icon-2.png', selectedIconPath: 'assets/img/icon-2-selected.png' }, { pagePath: 'pages/sell/index', text: '排行榜', iconPath: 'assets/img/icon-3.png', selectedIconPath: 'assets/img/icon-3-selected.png' }, { pagePath: 'pages/spike/index', text: '抢购', iconPath: 'assets/img/icon-2.png', selectedIconPath: 'assets/img/icon-2-selected.png' }, { pagePath: 'pages/profile/index', text: '我的', iconPath: 'assets/img/icon-5.png', selectedIconPath: 'assets/img/icon-5-selected.png' } ] }