| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "农工笔记"
- }
- }
- ,{
- "path" : "pages/index/upload/upload",
- "style" :
- {
- "navigationBarTitleText": "内容上传",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/index/record/record",
- "style" :
- {
- "navigationBarTitleText": "发布记录",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/index/auth/index",
- "style" :
- {
- "navigationBarTitleText": "农工笔记",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/index/activity/activity",
- "style" :
- {
- "navigationBarTitleText": "活动记录",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/index/honor/honor",
- "style" :
- {
- "navigationBarTitleText": "荣誉殿堂",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "农工笔记",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "list": [{
- "pagePath": "pages/index/activity/activity",
- "iconPath": "/static/tabbar/activity.png",
- "selectedIconPath": "/static/tabbar/activty-ed.png",
- "text": "活动记录"
- },
- {
- "pagePath": "pages/index/honor/honor",
- "iconPath": "/static/tabbar/honer.png",
- "selectedIconPath": "/static/tabbar/honer-ed.png",
- "text": "荣誉殿堂"
- },
- {
- "pagePath": "pages/index/index",
- "iconPath": "/static/tabbar/self.png",
- "selectedIconPath": "/static/tabbar/self-ed.png",
- "text": "个人中心"
- }
- ]
- }
- }
|