123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- {
- "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函数里面得到
- }
- ]
- }
- }
|