公司要做一个投票的微信小程序,我很早之前就想学习这方面的知识了,正好这次有机会可以静下心来学习点知识啦!^ ^
1.JSON配置说明
app.json是全局配置文件
{
"pages":[
"pages/index/index",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"black"
},
"tabBar": {
"list": [{
"pagePath": "pages/index/index",
"text": "首页"
}, {
"pagePath": "pages/logs/logs",
"text": "日志"
}]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": true
}
字段说明:
1.pages:所有页面路径
2.window:所有页面的顶部背景颜色、文字颜色等。
navigationBarBackgroundColor --导航栏背景颜色
navigationBarTextStyle --导航栏标题颜色,仅支持 black / white
navigationBarTitleText --导航栏标题文字内容
navigationStyle --导航栏样式(default 默认样式custom 自定义导航栏,只保留右上角胶囊按钮)
backgroundColor
backgroundTextStyle
backgroundColorTop
backgroundColorBottom
enablePullDownRefresh
网友评论