pages.json 3 KB
Newer Older
张成 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{
  "easycom": {
    "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  },
  "pages": [
    {
      "path": "pages/menu/menu",
      "style": {
        "navigationBarTitleText": "菜单",
        "navigationStyle": "custom",
        "enablePullDownRefresh": false
      }
    },
    {
      "path": "pages/order/order",
      "style": {
17
        "navigationBarTitleText": "我的订单",
张成 committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
        "enablePullDownRefresh": false
      }
    },
    {
      "path": "pages/mine/mine",
      "style": {
        "navigationBarTitleText": "我的",
        "navigationStyle": "custom",
        "enablePullDownRefresh": false
      }
    }
  ],
  "subPackages": [
    {
      "root": "menuSubPackage",
      "pages": [
        {
          "path": "pages/goodsDetail/goodsDetail",
          "style": {
            "navigationBarTitleText": "",
            "navigationStyle": "custom",
            "enablePullDownRefresh": false
          }
        },
        {
          "path": "pages/areaSelect/areaSelect",
          "style": {
45
            "navigationBarTitleText": "选择门店",
张成 committed
46 47
            "enablePullDownRefresh": false
          }
zhangpeng committed
48
        }
张成 committed
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
      ]
    },
    {
      "root": "orderSubPackage",
      "pages": [
        {
          "path": "pages/settlement/index",
          "style": {
            "navigationBarTitleText": "订单结算",
            "enablePullDownRefresh": false
          }
        },
        {
          "path": "pages/orderInfo/index",
          "style": {
            "navigationBarTitleText": "订单详情",
65
            "navigationStyle": "custom",
张成 committed
66 67
            "enablePullDownRefresh": false
          }
zhangpeng committed
68
        }
张成 committed
69 70 71 72
      ]
    },
    {
      "root": "mineSubPackage",
张成 committed
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
      "pages": [
        {
          "path": "pages/msg/index",
          "style": {
            "navigationBarTitleText": "消息列表",
            "enablePullDownRefresh": false
          }
        },
        {
          "path": "pages/msgInfo/index",
          "style": {
            "navigationBarTitleText": "消息详情",
            "enablePullDownRefresh": false
          }
        }
      ]
张成 committed
89 90 91 92 93 94 95 96 97
    }
  ],
  "globalStyle": {
    "navigationBarTextStyle": "black",
    "navigationBarTitleText": "HOOLOO",
    "navigationBarBackgroundColor": "#ffffff",
    "backgroundColor": "#ffffff"
  },
  "tabBar": {
songbingqi committed
98
    "custom": true,
99
    "color": "#999999",
宋冰琦 committed
100
    "selectedColor": "#0050F6",
101
    "iconWidth": "30rpx",
102
    "borderStyle":"white",
张成 committed
103 104
    "list": [
      {
weijiguang committed
105 106
        "iconPath": "/static/imgs/caidanweixuanzhong.png",
        "selectedIconPath": "/static/imgs/caidanxuanzhong.png",
张成 committed
107 108
        "pagePath": "pages/menu/menu",
        "text": "菜单"
张成 committed
109 110
      },
      {
weijiguang committed
111 112
        "iconPath": "/static/imgs/dingdanweixuanzhong.png",
        "selectedIconPath": "/static/imgs/dingdanxuanzhong.png",
张成 committed
113 114
        "pagePath": "pages/order/order",
        "text": "订单"
张成 committed
115 116
      },
      {
weijiguang committed
117 118
        "iconPath": "/static/imgs/wodeweixuanzhong.png",
        "selectedIconPath": "/static/imgs/wodexuanzhong.png",
张成 committed
119 120
        "pagePath": "pages/mine/mine",
        "text": "我的"
张成 committed
121 122 123
      }
    ]
  }
zhangpeng committed
124
}