{ "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":"背诵" }] } }