{ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/index/index", "style": { "navigationBarTitleText": "维沙采购商城", "enablePullDownRefresh" : true, "navigationStyle":"custom" } },{ "path": "pages/login/login", "style": { "navigationBarTitleText": "登录" } },{ "path": "pages/authorization/authorization", "style": { "navigationBarTitleText": "微信授权", "navigationStyle":"custom" } },{ "path" : "pages/tabBar/category/index", "style" : { "navigationBarTitleText": "分类", "navigationStyle":"custom" } },{ "path": "pages/tabBar/cart/cart", "style": { "navigationBarTitleText": "购物车", "enablePullDownRefresh":true } } ], "subPackages": [ { "root": "pages/goods/",//商品模块 "pages": [ { "path": "product", "style": { "navigationBarTitleText": "商品详情", "navigationStyle":"custom" } } ] }, { "root": "pages/user/",//机构个人中心模块 "pages": [ { "path": "cart/cart", "style": { "navigationBarTitleText": "购物车" } }, { "path": "cart/immediately", "style": { "navigationBarTitleText": "立即下单" } }, { "path": "club/club-list", "style": { "navigationBarTitleText": "机构列表" } }, { "path": "address/addressManage", "style": { "navigationBarTitleText": "添加新地址" } }, { "path": "address/address", "style": { "navigationBarTitleText": "地址列表" } }, { "path": "order/create-order", "style": { "navigationBarTitleText": "确认订单" } }, { "path": "order/success", "style": { "navigationBarTitleText": "支付结果", "navigationStyle":"custom" } }, { "path": "order/order-payment", "style": { "navigationBarTitleText": "选择支付方式", "navigationStyle":"custom" } }, { "path": "order/order-pay", "style": { "navigationBarTitleText": "收银台", "navigationStyle":"custom" } }, { "path": "order/orderShareLogin", "style": { "navigationBarTitleText": "输入分享码" } }, { "path": "order/order-list", "style": { "navigationBarTitleText": "我的订单", "navigationStyle":"custom" } }, { "path": "order/order-details", "style": { "navigationBarTitleText": "订单详情", "navigationStyle":"custom" } }, { "path": "order/order-sharedetails", "style": { "navigationBarTitleText": "订单详情" } }, { "path": "order/order-logistics", "style": { "navigationBarTitleText": "物流信息" } }, { "path": "service/sellconten", "style": { "navigationBarTitleText": "条款内容" } } ] } ], "tabBar": { "height":"80", "color": "#999999", "selectedColor": "#E15616", "borderStyle": "black", "backgroundColor": "#ffffff", "list": [ { "pagePath": "pages/tabBar/category/index", "iconPath": "static/icon-home@3x.png", "selectedIconPath": "static/icon-home-active@3x.png", "text": "商城" }, { "pagePath": "pages/tabBar/cart/cart", "iconPath": "static/icon-cart@3x.png", "selectedIconPath": "static/icon-cart-active@3x.png", "text": "购物车" } ] }, "easycom": { "autoscan": true, "custom": { "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue" } }, "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "维沙采购商城", "navigationBarBackgroundColor": "#FFFFFF", "backgroundColor": "#FFFFFF" }, "condition" : { //模式配置,仅开发期间生效 "current": 0, //当前激活的模式(list 的索引项) "list": [ { "name": "", //模式名称 "path": "", //启动页面,必选 "query": "" //启动参数,在页面的onLoad函数里面得到 } ] } }