123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/orders/index",//订单
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white"
-
- }
- },
- {
- "path": "pages/my/index",//团队
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/login/register",//注册
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path": "pages/leakage/index",//撿漏區
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/my/rule",//参与规则
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/my/tutorial",//新手教程
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/my/tutorialdel",//新手教详情
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/my/fhlist",//分红列表
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": true
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "VGST",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },//撿漏區
- "tabBar": {
- "color": "#767E9E",
- "selectedColor": "#14C670",
- "borderStyle": "white",
- "backgroundColor": "#ffffff",
- "iconWidth":"32px",
- "spacing":"0",
- "fontSize":"10px",
- "height":"60px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tabble/Home.png",
- "selectedIconPath": "static/tabble/Homehover.png",
- "text": "首頁"
- }, {
- "pagePath": "pages/orders/index",
- "iconPath": "static/tabble/Bill.png",
- "selectedIconPath": "static/tabble/Billhover.png",
- "text": "訂單"
- },
- {
- "pagePath": "pages/leakage/index",
- "iconPath": "static/tabble/Price.png",
- "selectedIconPath": "static/tabble/Pricehover.png",
- "text": "撿漏"
- },{
- "pagePath": "pages/my/index",
- "iconPath": "static/tabble/Mine.png",
- "selectedIconPath": "static/tabble/Minehover.png",
- "text": "我的"
- }]
-
- }
- }
|