123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/login/login",
- "style" :
- {
- "navigationBarTitleText" : "登录"
- }
- },
- {
- "path" : "pages/classify/classify",
- "style" :
- {
- "navigationBarTitleText" : "首页",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/classify/detail",
- "style" :
- {
- "navigationBarTitleText" : "商品详情"
- }
- },
- {
- "path" : "pages/diningList/diningList",
- "style" :
- {
- "navigationBarTitleText" : "餐车列表"
- }
- },
-
- {
- "path" : "pages/diningCar/diningCar",
- "style" :
- {
- "navigationBarTitleText" : "餐车信息",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/bindPhone/bindPhone",
- "style" :
- {
- "navigationBarTitleText" : "登录",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/order/myOrder/myOrder",
- "style" :
- {
- "navigationBarTitleText" : "我的订单",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/order/paySuccess/paySuccess",
- "style" :
- {
- "navigationBarTitleText" : "支付成功",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/order/orderDetail/orderDetail",
- "style" :
- {
- "navigationBarTitleText" : "订单详情",
- "enablePullDownRefresh" : false
- }
- },
-
- {
- "path" : "pages/order/submitOrder/submitOrder",
- "style" :
- {
- "navigationBarTitleText" : "提交订单",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/user/user",
- "style" :
- {
- "navigationBarTitleText" : "我的",
- "enablePullDownRefresh" : false
- }
- },
-
- {
- "path" : "pages/goodDetail/goodDetail",
- "style" :
- {
- "navigationBarTitleText" : "商品详情",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- }
- ],
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "tabBar": {
- "custom": true,
- "color": "#C0C4CC",
- "selectedColor": "#000000",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/ic_hone.png",
- "selectedIconPath": "static/ic_hone.png",
- "text": "首页"
- },
- // {
- // "pagePath": "pages/classify/classify",
- // "iconPath": "static/ic_hone.png",
- // "selectedIconPath": "static/ic_hone.png",
- // "text": "分类"
- // },
- {
- "pagePath": "pages/user/user",
- "iconPath": "static/ic_hone.png",
- "selectedIconPath": "static/ic_hone.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "销售系统",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#EEEEEE"
- },
- "uniIdRouter": {}
- }
|