123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/tabBar/home/home",
- "style": {
- "navigationBarTitleText": "采美采购商城",
- "enablePullDownRefresh":true
- }
- },
- {
- "path": "pages/tabBar/cart/cart",
- "style": {
- "navigationBarTitleText": "购物车",
- "enablePullDownRefresh":true
- }
- },
- {
- "path": "pages/tabBar/user/user",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh" : true
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/user/account/account",
- "style": {
- "navigationBarTitleText": "账户余额明细",
- "enablePullDownRefresh" : true
- }
- },
- {
- "path": "pages/user/address/addressManage",
- "style": {
- "navigationBarTitleText": "添加新地址"
- }
- },
- {
- "path": "pages/user/address/address",
- "style": {
- "navigationBarTitleText": "地址列表"
- }
- },
- {
- "path": "pages/user/about/about",
- "style": {
- "navigationBarTitleText": "关于我们"
- }
- },
- {
- "path": "pages/goods/goods",
- "style": {
- "navigationBarTitleText": "商品列表"
- }
- },
- {
- "path": "pages/goods/product",
- "style": {
- "navigationBarTitleText": "商品详情",
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/user/order/order-cashier",
- "style": {
- "navigationBarTitleText": "收银台",
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/service/aftersale",
- "style": {
- "navigationBarTitleText": "售后无忧"
- }
- },
- {
- "path": "pages/service/shoppingnotice",
- "style": {
- "navigationBarTitleText": "购物须知"
- }
- },
- {
- "path": "pages/service/member",
- "style": {
- "navigationBarTitleText": "正品联盟"
- }
- }
- ,{
- "path" : "pages/user/invoice/invoice",
- "style" : {
- "navigationBarTitleText": "发票信息"
- }
- }
- ,{
- "path" : "pages/user/regularPurchase/regularPurchase",
- "style" : {
- "navigationBarTitleText": "常采购商品"
- }
- },
- {
- "path": "pages/user/order/create-order",
- "style": {
- "navigationBarTitleText": "确认订单"
- }
- },
- {
- "path": "pages/user/order/orderShareLogin",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "pages/user/order/myOrder",
- "style": {
- "navigationBarTitleText": "我的订单",
- // "enablePullDownRefresh": true,
- "onReachBottomDistance": 50,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/user/order/order-list",
- "style": {
- "navigationBarTitleText": "我的订单",
- // "enablePullDownRefresh": true,
- // "onReachBottomDistance": 50,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/user/order/order-details",
- "style": {
- "navigationBarTitleText": "订单详情",
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/user/order/order-sharedetails",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "pages/user/order/order-logistics",
- "style": {
- "navigationBarTitleText": "物流信息"
- }
- }
- ],
- "tabBar": {
- "height":"80",
- "color": "#999999",
- "selectedColor": "#E15616",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/tabBar/home/home",
- "iconPath": "static/home@3x.png",
- "selectedIconPath": "static/home-current@3x.png",
- "text": "商城"
- },
- {
- "pagePath": "pages/tabBar/cart/cart",
- "iconPath": "static/cart@3x.png",
- "selectedIconPath": "static/cart-current@3x.png",
- "text": "购物车"
- },
- {
- "pagePath": "pages/tabBar/user/user",
- "iconPath": "static/user@3x.png",
- "selectedIconPath": "static/user-current@3x.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "采美采购商城",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#FFFFFF"
- }
- }
|