Files
word-pratice-app/pages.json
进进啊 71f81cdbc9 commit
2022-04-13 21:45:08 +08:00

56 lines
1.5 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/home/index",
"style": {
"navigationBarTitleText": "单词学习宝典"
}
}
,{
"path" : "pages/recitation/index",
"style" :
{
"navigationBarTitleText": "单词背诵",
"enablePullDownRefresh": false
}
},
{
"path":"pages/answer-detail/answer-detail",
"style" :
{
"navigationBarTitleText": "请选择单词正确的中文含义",
"enablePullDownRefresh": false,
"backgroundColor":"#f6f8fa",
"navigationBarBackgroundColor":"#FFFFFF"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar":{
"color": "#9da6b6",
"selectedColor": "#293042",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"height":"60px",
"list":[{
"pagePath":"pages/home/index",
"iconPath":"static/icon/home-unselect.png",
"selectedIconPath":"static/icon/home-selected.png",
"text":"答题"
},{
"pagePath":"pages/recitation/index",
"iconPath":"static/icon/recitation-unselect.png",
"selectedIconPath":"static/icon/recitation-selected.png",
"text":"背诵"
}]
}
}