page配置文件详解
{
"pages": [
"pages/index/index", //项目入口文件
"pages/history/history",
"pages/change/change"
],
"window": {
"backgroundTextStyle": "light", //
"navigationBarBackgroundColor": "#1c1b21", 、、背景颜色
"navigationBarTitleText": "极简翻译", //背景标题
"navigationBarTextStyle": "white", //背景文字颜色
"backgroundColor": "#333"
},
"tabBar": {
"borderStyle": "white", //边框颜色
"position": "top", //标签位置
"color": "#595959", //标签颜色
"selectedColor": "#1c1b21", //被选中的标签的颜色
"list":[
{
"pagePath":"pages/index/index", //list跳转的入口
"text": "翻译" //标签文字
},
{
"pagePath": "pages/history/history",
"text": "历史"
}
]
}
}