123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/Login/Login",
- "style" : {
- "navigationStyle": "custom",
- "disableScroll": true
- }
- },
- {
- "path" : "pages/Login/loginWeixin",
- "style" : {
- "navigationStyle": "custom"
- }
- },
- {
- "path" : "pages/Charts/mainStatistics",
- "style" : {
- "navigationBarTitleText":"首页"
- // "disableScroll": true
- // "enablePullDownRefresh": true
- }
- },
- // {
- // "path" : "pages/User/merchantList",
- // "style" : {
- // "navigationBarTitleText":"机器销售",
- // // "disableScroll": true,
- // "enablePullDownRefresh": true
- // }
- // },
- // {
- // "path" : "pages/User/equipmentSratisticsList",
- // "style" : {
- // "navigationBarTitleText":"机器排行",
- // // "disableScroll": true,
- // "enablePullDownRefresh": true
- // }
- // },
- // {
- // "path" : "pages/User/equipmentStatusList",
- // "style" : {
- // "navigationBarTitleText":"机器状态",
- // // "disableScroll": true,
- // "enablePullDownRefresh": true
- // }
- // },
- {
- "path" : "pages/Setting/Setting",
- "style" : {
- "navigationBarTitleText":"机器设置",
- // "disableScroll": true,
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/Setting/singleStatistics",
- "style" : {
- "navigationBarTitleText":"单机统计",
- // "disableScroll": true,
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/Setting/cleanRule",
- "style" : {
- "navigationBarTitleText":"清洗规则",
- // "disableScroll": true,
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/Setting/pay",
- "style" : {
- "navigationBarTitleText":"支付",
- // "disableScroll": true,
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/Setting/dayPay",
- "style" : {
- "navigationBarTitleText":"按日支付",
- // "disableScroll": true,
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/Setting/timesPay",
- "style" : {
- "navigationBarTitleText":"按次数支付",
- // "disableScroll": true,
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/User/user",
- "style" : {
- "navigationBarTitleText":"我的"
- }
- },
- {
- "path" : "pages/User/promoCode",
- "style" : {
- "navigationBarTitleText":"优惠码"
- }
- },
- {
- "path" : "pages/User/buyPromo",
- "style" : {
- "navigationBarTitleText":"购买优惠码"
- }
- },
- {
- "path" : "pages/User/equipmentName",
- "style" : {
- "navigationBarTitleText":"修改设备名称"
- }
- },
- // {
- // "path": "pages/Charts/elseStatistics",
- // "style": {
- // "navigationBarTitleText": "统计图表"
- // }
- // },
- // {
- // "path": "pages/Charts/equipmentStatistics",
- // "style": {
- // "navigationBarTitleText": "销售排行"
- // }
- // }
-
- {
- "path" : "pages/WeixinSwicth/WeixinSwicth",
- "style" : {
- // "navigationStyle": "custom",
- "navigationBarTitleText": "微信绑定",
- "menuSrc":"static/img/leftTriangle.png",
- "enablePullDownRefresh": true
- // "disableScroll": true
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#206DC3",
- "backgroundColor": "#F8F8F8",
- "animationType":"slide-in-right",
- "animationDuration":200
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#007AFF",
- "borderStyle": "black",
- "backgroundColor": "#F8F8F8",
- "list": [{
- "pagePath": "pages/Charts/mainStatistics",
- "iconPath": "static/img/home.png",
- "selectedIconPath": "static/img/homeHL.png",
- "text": "首页"
- },
- // {
- // "pagePath": "pages/User/merchantList",
- // "iconPath": "static/img/merchantList.png",
- // "selectedIconPath": "static/img/merchantListHL.png",
- // "text": "机器销售"
- // },
- // {
- // "pagePath": "pages/Charts/equipmentStatistics",
- // "iconPath": "static/img/equipmentSratisticsList.png",
- // "selectedIconPath": "static/img/equipmentSratisticsListHL.png",
- // "text": "机器排行"
- // },
- // {
- // "pagePath": "pages/User/equipmentStatusList",
- // "iconPath": "static/img/equipment.png",
- // "selectedIconPath": "static/img/equipmentHL.png",
- // "text": "机器状态"
- // },
- {
- "pagePath": "pages/Setting/Setting",
- "iconPath": "static/img/equipment.png",
- "selectedIconPath": "static/img/equipmentHL.png",
- "text": "机器设置"
- },
- {
- "pagePath": "pages/User/user",
- "iconPath": "static/img/user.png",
- "selectedIconPath": "static/img/userHL.png",
- "text": "我的"
- }
- ]
- }
- }
|