| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/orderMeal/index",
- "style": {
- "navigationBarTitleText": "点单"
- }
- },
- {
- "path": "pages/qrCode/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/order/index",
- "style": {
- "navigationBarTitleText": "订单"
- }
- },
- {
- "path": "pages/my/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }
- ],
- "subPackages": [{
- "root": "orderPages",
- "pages": [{
- "path": "orderDetail/index",
- "style": {
- "navigationBarTitleText": "订单详情",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "goodsDetail/index",
- "style": {
- "navigationBarTitleText": "商品详情",
- "enablePullDownRefresh": false
- }
- }]
- }],
- "tabBar": {
- "color": "#282828",
- "selectedColor": "#B22338",
- "borderStyle": "white",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index"
- },
- {
- "pagePath": "pages/orderMeal/index"
- },
- {
- "pagePath": "pages/qrCode/index"
- },
- {
- "pagePath": "pages/order/index"
- },
- {
- "pagePath": "pages/my/index"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "加载中",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#F8F8F8",
- "titleNView": false
- },
- "uniIdRouter": {}
- }
|