123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/activity/activity",
- "style": {
- "navigationBarTitleText": "报告及活动",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/report/report",
- "style": {
- "navigationBarTitleText": "报告"
- }
- },
- {
- "path": "pages/buy/buy",
- "style": {
- "navigationBarTitleText": "已购"
- }
- },
- {
- "path": "pages/chart/chart",
- "style": {
- "navigationBarTitleText": "图库"
- }
- },
- {
- "path": "pages/user/user",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path":"pages/login",
- "style":{
- "navigationBarTitleText":"绑定联系方式"
- }
- }
- ],
- "subPackages":[
- // 活动模块
- {
- "root":"pages-activity",
- "pages":[
- {
- "path":"detail",
- "style":{
- "navigationBarTitleText":"报告及活动详情"
- }
- },
- {
- "path":"noAuthority",
- "style":{
- "navigationBarTitleText":"报告及活动详情"
- }
- },
- {
- "path": "reportDetail",
- "style":{
- "navigationBarTitleText": "报告详情"
- }
- }
- ]
- },
- // 申请权限模块
- {
- "root":"pages-applyPermission",
- "pages": [
- {
- "path":"applyPermission",
- "style":{
- "navigationBarTitleText":"申请试用"
- }
- },
- {
- "path":"selectVariety",
- "style":{
- "navigationBarTitleText":"选择品种"
- }
- },
- {
- "path":"applyResult",
- "style":{
- "navigationBarTitleText":"申请结果"
- }
- }
- ]
- },
- // 用户模块
- {
- "root": "pages-user",
- "pages": [
- {
- "path": "permissionList",
- "style":{
- "navigationBarTitleText": "品种权限"
- }
- }
- ]
- }
- ],
-
- "tabBar": {
- "custom": true,
- "color": "#1F243A",
- "selectedColor": "#E3B377",
- "list": [
- {
- "pagePath": "pages/buy/buy",
- "text": "已购",
- "iconPath": "./static/tabbar/buy.png",
- "selectedIconPath": "./static/tabbar/buy-s.png"
- },
- {
- "pagePath": "pages/report/report",
- "text": "报告",
- "iconPath": "./static/tabbar/report.png",
- "selectedIconPath": "./static/tabbar/report-s.png"
- },
- {
- "pagePath": "pages/chart/chart",
- "text": "图库",
- "iconPath": "./static/tabbar/chart.png",
- "selectedIconPath": "./static/tabbar/chart-s.png"
- },
- {
- "pagePath": "pages/activity/activity",
- "text": "报告及活动",
- "iconPath": "./static/tabbar/activity.png",
- "selectedIconPath": "./static/tabbar/activity-s.png"
- },
- {
- "pagePath": "pages/user/user",
- "text": "我的",
- "iconPath": "./static/tabbar/user.png",
- "selectedIconPath": "./static/tabbar/user-s.png"
- }
- ]
- },
-
-
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "弘则研报",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#FFFFFF",
- "usingComponents":{
- "van-button":"/wxcomponents/vant/button/index",
- "van-toast":"/wxcomponents/vant/toast/index",
- "van-popup":"/wxcomponents/vant/popup/index",
- "van-search": "/wxcomponents/vant/search/index",
- "van-sticky": "/wxcomponents/vant/sticky/index",
- "van-field": "/wxcomponents/vant/field/index",
- "van-icon": "/wxcomponents/vant/icon/index",
- "van-radio": "/wxcomponents/vant/radio/index",
- "van-tab": "/wxcomponents/vant/tab/index",
- "van-tabs": "/wxcomponents/vant/tabs/index",
- "van-count-down": "/wxcomponents/vant/count-down/index",
- "van-empty": "/wxcomponents/vant/empty/index",
- "van-checkbox": "/wxcomponents/vant/checkbox/index"
- }
- }
- }
|