{ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/index/index", "style": { "navigationBarTitleText": "", "navigationBarBackgroundColor": "#f0efef", "navigationStyle": "custom" } }, { "path" : "pages/add/add", "style" : { "navigationBarTitleText" : "添加联系人", "enablePullDownRefresh" : false } }, { "path" : "pages/setting/setting", "style" : { "navigationBarTitleText" : "设置", "enablePullDownRefresh" : false } }, { "path" : "pages/history/history", "style" : { "navigationBarTitleText" : "", "enablePullDownRefresh" : false, "navigationStyle": "custom" } }, { "path" : "pages/tel/tel", "style" : { "navigationBarTitleText" : "", "enablePullDownRefresh" : false } }, { "path" : "pages/ContactDetails/ContactDetails", "style" : { // "navigationBarTitleText" : "联系人详情" "navigationStyle": "custom" } }, { "path": "pages/edit/edit", "style": { "navigationBarTitleText": "编辑" } }, { "path" : "pages/test/test", "style" : { "navigationBarTitleText" : "" } }, { "path" : "pages/contact/contact", "style" : { "navigationBarTitleText" : "" } } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#f0efef", "backgroundColor": "#f0efef", "app-plus": { "bottomBarColor": "#007bff" // 设置Tab Bar背景色 } }, "uniIdRouter": {}, "tabBar": { "height": "50px", "iconWidth": "40px", "backgroundColor": "#f0efef", "list": [ { "pagePath": "pages/history/history", //"通话记录", "iconPath": "./static/fonts/directory.png", "selectedIconPath": "static/fonts/directory1.png" }, { "pagePath": "pages/index/index", "iconPath": "./static/fonts/linkman.png", "selectedIconPath": "static/fonts/linkman1.png" }, { "pagePath": "pages/tel/tel", "iconPath": "./static/fonts/24gf-telephoneKeypad4 (1).png", "selectedIconPath": "static/fonts/24gf-telephoneKeypad4.png" } ] }, "condition" : { //模式配置,仅开发期间生效 "current": 0, //当前激活的模式(list 的索引项) "list": [ { "name": "", //模式名称 "path": "", //启动页面,必选 "query": "" //启动参数,在页面的onLoad函数里面得到 } ] } }