微信小程序 之 配置

"pages":[
"pages/index/index",
"pages/AddSchedule/index",
"pages/details/index"
],
"window":{
"backgroundTextStyle":"dark", //下拉刷新样式
"navigationBarBackgroundColor": "#000", //窗口颜色
"navigationBarTitleText": "日历管家", //窗口名称
"navigationBarTextStyle":"white", //窗口字体颜色
"enablePullDownRefresh":true //是否开启刷新
},
// 底部TAB配置
"tabBar": {
"color": "#9E9E9E",
"selectedColor": "#f00",
"backgroundColor": "#fff",
"borderStyle": "#ccc",
"list": [
{
"pagePath": "pages/index/index",
"text": "主页",
"active": true,
"selectedColor":"red"

}
]

}

猜你喜欢

转载自blog.csdn.net/qinlulucsdn/article/details/80279850