123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- {
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": true,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/authorization/authorization",
- "style": {
- "navigationBarTitleText": "微信授权"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/tabBar/category/index",
- "style": {
- "navigationBarTitleText": "分类",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/tabBar/cart/cart",
- "style": {
- "navigationBarTitleText": "购物车",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/goods/list",
- "style": {
- "navigationBarTitleText": "立即下单"
- }
- },
- {
- "path":"pages/goods/product",
- "style":{
- "navigationBarTitleText":"商品详情"
- }
- }
- ],
- "subPackages": [{
- "root": "pages/user/", //机构个人中心模块
- "pages": [{
- "path": "club/club-list",
- "style": {
- "navigationBarTitleText": "机构列表"
- }
- }, {
- "path": "cart/cart",
- "style": {
- "navigationBarTitleText": "购物车"
- }
- },
- {
- "path": "cart/immediately",
- "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-historylist",
- "style": {
- "navigationBarTitleText": "机构订单列表"
- }
- },
- {
- "path": "order/order-details",
- "style": {
- "navigationBarTitleText": "订单详情",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "order/order-sharedetails",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "order/search-order",
- "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函数里面得到
- }]
- }
- }
|