| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/login",
- "style": {
- "enablePullDownRefresh": true, //下拉刷新
- "navigationBarTitleText": "登录页",
- "app-plus": {
- "titleNView": false //禁用原生导航栏
- }
- }
- }, {
- "path": "pages/myTask/myTask",
- "style": {
- "navigationBarTitleText": "我的任务"
- }
- },{
- "path": "pages/adressBook/adressBook",
- "style": {
- "navigationBarTitleText": "通讯录"
- }
- },
- {
- "path": "pages/setting/setting",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }
- ],
- // "tabBar":{
- // },
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "全局",
- "navigationBarBackgroundColor": "#cd0000",
- "backgroundColor": "#cd0000"
- },
- "tabBar":{
- "color":"#7e837d",
- "selectedColor":"#0066ec",
- "backgroundColor":"#FFFFFF",
- "borderStyle":"black",
- "list":[{
- "pagePath":"pages/myTask/myTask",
- "iconPath":"./static/task.png",
- "selectedIconPath":"./static/task_actice.png",
- "text":"我的任务"
- },
- {
- "pagePath":"pages/adressBook/adressBook",
- "iconPath":"./static/addressBook.png",
- "selectedIconPath":"./static/addressBook_actuve.png",
- "text":"通讯录"
- },
- {
- "pagePath":"pages/setting/setting",
- "iconPath":"./static/person.png",
- "selectedIconPath":"./static/person_active.png",
- "text":"我的"
- }]
- }
- }
|