46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path": "pages/home/index",
|
||
"style": {
|
||
"navigationBarTitleText": "单词学习APP"
|
||
}
|
||
}
|
||
,{
|
||
"path" : "pages/recitation/index",
|
||
"style" :
|
||
{
|
||
"navigationBarTitleText": "",
|
||
"enablePullDownRefresh": false
|
||
}
|
||
|
||
}
|
||
],
|
||
"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":"背诵"
|
||
}]
|
||
|
||
|
||
}
|
||
}
|