| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/auth/index",
- "style": {
- "navigationBarTitleText": "授权页面"
- }
- },
- {
- "path": "pages/index/postShare/index",
- "style": {
- "navigationBarTitleText": "产品详情"
- }
- },
- {
- "path": "pages/index/detailPage/index",
- "style": {
- "navigationBarTitleText": "产品详情"
- }
- },
- {
- "path": "pages/index/ruleList/index",
- "style": {
- "navigationBarTitleText": "分享规则"
- }
- },
- {
- "path": "pages/selfCenter/index",
- "style": {
- "navigationBarTitleText": "个人中心"
- }
- },
- {
- "path": "pages/selfCenter/recommendTeam/index",
- "style": {
- "navigationBarTitleText": "分销团队"
- }
- },
- {
- "path": "pages/selfCenter/cashoutPage/index",
- "style": {
- "navigationBarTitleText": "提现记录"
- }
- },
- {
- "path": "pages/selfCenter/cashoutPage/applyPage/index",
- "style": {
- "navigationBarTitleText": "申请提现"
- }
- },
- {
- "path": "pages/selfCenter/awardPage/index",
- "style": {
- "navigationBarTitleText": "奖励记录"
- }
- },
- {
- "path": "pages/selfCenter/helpPage/index",
- "style": {
- "navigationBarTitleText": "帮助中心"
- }
- },
- {
- "path": "pages/selfCenter/helpPage/helpDetail/index",
- "style": {
- "navigationBarTitleText": "查看详情"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "分销助手",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#d8d8d8",
- "selectedColor": "#4a4a4a",
- "borderStyle": "white",
- "backgroundColor": "#FFFFFF",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "/static/tabbar/house-pic-nor.png",
- "selectedIconPath": "/static/tabbar/house-pic-active.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/selfCenter/index",
- "iconPath": "/static/tabbar/use-pic-nor.png",
- "selectedIconPath": "/static/tabbar/use-pic-active.png",
- "text": "个人中心"
- }
- ]
- }
- }
|