| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/index/activity/activity",
- "style" :
- {
- "navigationBarTitleText": "活动记录",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white"
- }
-
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "农工笔记",
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path": "pages/index/self_info",
- "style": {
- "navigationBarTitleText": "个人信息"
- }
- },
- {
- "path": "pages/index/org_member",
- "style": {
- "navigationBarTitleText": "组织成员"
- }
- },
- {
- "path": "pages/index/back_login",
- "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/honor/honor",
- "style" :
- {
- "navigationBarTitleText": "荣誉殿堂",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/index/honor/record",
- "style" :
- {
- "navigationBarTitleText": "上传荣誉",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/index/activity/create1",
- "style" :
- {
- "navigationBarTitleText": "创建活动",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/index/activity/create2",
- "style" :
- {
- "navigationBarTitleText": "创建活动",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/index/activity/edit_page",
- "style" :
- {
- "navigationBarTitleText": "编辑活动",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/index/activity/list",
- "style" :
- {
- "navigationBarTitleText": "活动记录",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/index/activity/record",
- "style" :
- {
- "navigationBarTitleText": "上传记录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/index/activity/files",
- "style" :
- {
- "navigationBarTitleText": "上传文件",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/index/activity/comment",
- "style" :
- {
- "navigationBarTitleText": "添加评论",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/index/webview/web-view",
- "style" :
- {
- "navigationBarTitleText": "外部链接",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "农工笔记",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "borderStyle":"white",
- "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": "个人中心"
- }
- ]
- }
- }
|