diff --git a/App.vue b/App.vue index 1dc525f..e9fb832 100644 --- a/App.vue +++ b/App.vue @@ -35,6 +35,15 @@ export default { uni.setStorageSync("activity_id", options.query.activity_id); } + // 处理扫码进入小程序的场景值 + if (options.ulr = 'pagesub/index/store') { + const scene = decodeURIComponent(options.query.scene); + + wx.navigateTo({ + url: `/${options.path}?${scene}` + }); + } + let that = this; uni.getSystemInfo({ @@ -273,6 +282,15 @@ export default { "reloadUserResource", "setMsgNum", ]), + parseScene(scene) { + // 解析scene参数,如"page=pages/detail/index&id=123" + const params = {}; + scene.split('&').forEach(item => { + const [key, value] = item.split('='); + params[key] = value; + }); + return params; + }, /* setData : function (params) { for (let x in params) { diff --git a/pages.json b/pages.json index 7c59df5..7901e4f 100644 --- a/pages.json +++ b/pages.json @@ -1,57 +1,57 @@ { - "pages": [ - // #ifdef APP-PLUS - { - "path": "pages/index/privacy", - "style": { - "navigationBarTitleText": "隐私协议", - "app-plus": { - "titleNView": false - } - } - }, - // #endif - { - "path": "pages/index/launch", - "style": { - "navigationBarTitleText": "启动页", - "app-plus": { - "titleNView": false - } - } - }, - { - "path": "pages/index/guide", - "style": { - "navigationBarTitleText": "", - "app-plus": { - "titleNView": false - } - } - }, - { - "path": "pages/index/cart", - "style": { - "navigationBarTitleText": "购物车", - "app-plus": { - "titleNView": false - } - } - }, - { - "path": "pages/index/index", - "style": { - "navigationBarTitleText": "......", - "navigationStyle": "custom", - "onReachBottomDistance": 60, - "enablePullDownRefresh": true, - "app-plus": { - "titleNView": false - } - } - }, + "pages": [ + // #ifdef APP-PLUS + { + "path": "pages/index/privacy", + "style": { + "navigationBarTitleText": "隐私协议", + "app-plus": { + "titleNView": false + } + } + }, + // #endif + { + "path": "pages/index/launch", + "style": { + "navigationBarTitleText": "启动页", + "app-plus": { + "titleNView": false + } + } + }, + { + "path": "pages/index/guide", + "style": { + "navigationBarTitleText": "", + "app-plus": { + "titleNView": false + } + } + }, + { + "path": "pages/index/cart", + "style": { + "navigationBarTitleText": "购物车", + "app-plus": { + "titleNView": false + } + } + }, + { + "path": "pages/index/index", + "style": { + "navigationBarTitleText": "......", + "navigationStyle": "custom", + "onReachBottomDistance": 60, + "enablePullDownRefresh": true, + "app-plus": { + "titleNView": false + } + } + }, - /* + /* { "path": "pages/index/list", "style": { @@ -66,18 +66,18 @@ }, */ - { - "path": "pages/category/category", - "style": { - "navigationBarTitleText": "", - "navigationStyle": "custom", - "app-plus": { - "titleNView": false - } - } - }, + { + "path": "pages/category/category", + "style": { + "navigationBarTitleText": "", + "navigationStyle": "custom", + "app-plus": { + "titleNView": false + } + } + }, - /* + /* { "path": "pages/index/community", "style": { @@ -90,19 +90,19 @@ }, */ - { - "path": "pages/index/image", - "style": { - "navigationBarTitleText": "社区", - "onReachBottomDistance": 60, - "enablePullDownRefresh": true, - "navigationStyle": "custom", - "app-plus": { - "titleNView": false - } - } - }, - /* + { + "path": "pages/index/image", + "style": { + "navigationBarTitleText": "社区", + "onReachBottomDistance": 60, + "enablePullDownRefresh": true, + "navigationStyle": "custom", + "app-plus": { + "titleNView": false + } + } + }, + /* { "path": "pages/index/vv", "style": { @@ -111,108 +111,110 @@ }, */ - { - "path": "pages/cart/cart", - "style": { - "navigationBarTitleText": "购物车", - "enablePullDownRefresh": true, - // "navigationStyle": "custom", - "app-plus": { - "titleNView": { - "type": "transparent" - } - } - } - }, - - { - "path": "pages/index/member", - - "style": { - "navigationBarTitleText": "用户中心", - "onReachBottomDistance": 60, - "enablePullDownRefresh": true, - "app-plus": { - "titleNView": { - "type": "transparent" - } - }, - "h5": { - "titleNView": { - "type": "transparent" - } - } - } - }, - { - "path": "pages/login/login", - "style": { - "navigationBarTitleText": "登录" - } - }, - { - "path": "pages/product/list", - "style": { - "navigationBarTitleText": "", - "navigationStyle": "custom", - "app-plus": { - "titleNView": false - } - } - }, - { - "path": "pages/product/detail", - "style": { - "navigationBarTitleText": "", - "onReachBottomDistance": 60, - "enablePullDownRefresh": true, - "app-plus": { - "titleNView": { - "type": "transparent", - "buttons": [{ - "type": "menu" - }, - { - "type": "share" - } - /*, - { - "type" : "favorite" - }*/ - ] - } - }, - "h5": { - "titleNView": { - "type": "transparent", - "buttons": [{ - "type": "menu" - }, - { - "type": "share" - } - /*, - { - "type" : "favorite" - }*/ - ] - } - } - } - }, - { - "path": "pages/product/commentlist", - "style": { - "navigationBarTitleText": "评价列表" - } - }, - { - "path": "pages/checkout/checkout", - "style": { - "navigationBarTitleText": "订单提交" - } + { + "path": "pages/cart/cart", + "style": { + "navigationBarTitleText": "购物车", + "enablePullDownRefresh": true, + // "navigationStyle": "custom", + "app-plus": { + "titleNView": { + "type": "transparent" + } } - /* + } + }, + + { + "path": "pages/index/member", + + "style": { + "navigationBarTitleText": "用户中心", + "onReachBottomDistance": 60, + "enablePullDownRefresh": true, + "app-plus": { + "titleNView": { + "type": "transparent" + } + }, + "h5": { + "titleNView": { + "type": "transparent" + } + } + } + }, + { + "path": "pages/login/login", + "style": { + "navigationBarTitleText": "登录" + } + }, + { + "path": "pages/product/list", + "style": { + "navigationBarTitleText": "", + "navigationStyle": "custom", + "app-plus": { + "titleNView": false + } + } + }, + { + "path": "pages/product/detail", + "style": { + "navigationBarTitleText": "", + "onReachBottomDistance": 60, + "enablePullDownRefresh": true, + "app-plus": { + "titleNView": { + "type": "transparent", + "buttons": [ + { + "type": "menu" + }, + { + "type": "share" + } + /*, + { + "type" : "favorite" + }*/ + ] + } + }, + "h5": { + "titleNView": { + "type": "transparent", + "buttons": [ + { + "type": "menu" + }, + { + "type": "share" + } + /*, + { + "type" : "favorite" + }*/ + ] + } + } + } + }, + { + "path": "pages/product/commentlist", + "style": { + "navigationBarTitleText": "评价列表" + } + }, + { + "path": "pages/checkout/checkout", + "style": { + "navigationBarTitleText": "订单提交" + } + } + /* , { "path": "pages/index/vip", @@ -221,263 +223,264 @@ } } */ - ], - "subPackages": [ - { - "root": "address", - "pages": [ - { - "path": "selectShippingAddress", - "style": { - "navigationBarTitleText": "选择收货地址" - } - }, - { - "path": "selectCity", - "style": { - "navigationBarTitleText": "", - "navigationStyle": "custom", - "app-plus": { - "titleNView": false - } + ], + "subPackages": [ + { + "root": "address", + "pages": [ + { + "path": "selectShippingAddress", + "style": { + "navigationBarTitleText": "选择收货地址" + } + }, + { + "path": "selectCity", + "style": { + "navigationBarTitleText": "", + "navigationStyle": "custom", + "app-plus": { + "titleNView": false } } - ] - }, - { - "root": "member", - "pages": [{ - "path": "member/protocol", - "style": { - "navigationBarTitleText": "协议" - } - }, - { - "path": "invoice/list", - "style": { - "navigationBarTitleText": "发票地址", - "enablePullDownRefresh": true - } - }, - { - "path": "invoice/manage", - "style": { - "navigationBarTitleText": "发票新增", - "enablePullDownRefresh": true - } - }, - { - "path": "invoice/order", - "style": { - "navigationBarTitleText": "我的发票", - "enablePullDownRefresh": true - } - }, - { - "path": "member/growth", - "style": { - "navigationBarTitleText": "成长值" - } - }, - { - "path": "member/supermarketlList", - "style": { - "navigationBarTitleText": "超市列表", - "enablePullDownRefresh":true, - "navigationStyle": "custom" - } - }, - { - "path": "member/options", - "style": { - "navigationBarTitleText": "用户设置" - } - }, - { - "path": "member/bindphone", - "style": { - "navigationBarTitleText": "绑定手机" - } - }, - { - "path": "member/paypwd", - "style": { - "navigationBarTitleText": "支付密码" - } - }, - { - "path": "member/certification", - "style": { - "navigationBarTitleText": "实名认证" - } - }, - { - "path": "member/certifiedsns", - "style": { - "navigationBarTitleText": "文章渠道认证" - } - }, - { - "path": "member/data", - "style": { - "navigationBarTitleText": "个人资料" - } - }, + } + ] + }, + { + "root": "member", + "pages": [ + { + "path": "member/protocol", + "style": { + "navigationBarTitleText": "协议" + } + }, + { + "path": "invoice/list", + "style": { + "navigationBarTitleText": "发票地址", + "enablePullDownRefresh": true + } + }, + { + "path": "invoice/manage", + "style": { + "navigationBarTitleText": "发票新增", + "enablePullDownRefresh": true + } + }, + { + "path": "invoice/order", + "style": { + "navigationBarTitleText": "我的发票", + "enablePullDownRefresh": true + } + }, + { + "path": "member/growth", + "style": { + "navigationBarTitleText": "成长值" + } + }, + { + "path": "member/supermarketlList", + "style": { + "navigationBarTitleText": "超市列表", + "enablePullDownRefresh": true, + "navigationStyle": "custom" + } + }, + { + "path": "member/options", + "style": { + "navigationBarTitleText": "用户设置" + } + }, + { + "path": "member/bindphone", + "style": { + "navigationBarTitleText": "绑定手机" + } + }, + { + "path": "member/paypwd", + "style": { + "navigationBarTitleText": "支付密码" + } + }, + { + "path": "member/certification", + "style": { + "navigationBarTitleText": "实名认证" + } + }, + { + "path": "member/certifiedsns", + "style": { + "navigationBarTitleText": "文章渠道认证" + } + }, + { + "path": "member/data", + "style": { + "navigationBarTitleText": "个人资料" + } + }, - { - "path": "member/task", - "style": { - "navigationBarTitleText": "任务中心" - } - }, + { + "path": "member/task", + "style": { + "navigationBarTitleText": "任务中心" + } + }, - { - "path": "member/card", - "style": { - "navigationBarTitleText": "会员卡" - } - }, + { + "path": "member/card", + "style": { + "navigationBarTitleText": "会员卡" + } + }, - { - "path": "member/carddesc", - "style": { - "navigationBarTitleText": "会员卡详情" - } - }, + { + "path": "member/carddesc", + "style": { + "navigationBarTitleText": "会员卡详情" + } + }, - { - "path": "member/coupon", - "style": { - "navigationBarTitleText": "优惠券" - } - }, - { - "path": "member/favorites", - "style": { - "navigationBarTitleText": "商品收藏" - } - }, - { - "path": "member/favorites-store", - "style": { - "navigationBarTitleText": "店铺收藏" - } - }, - { - "path": "member/browse", - "style": { - "navigationBarTitleText": "浏览记录" - } - }, - { - "path": "member/feedback", - "style": { - "navigationBarTitleText": "反馈列表" - } - }, - { - "path": "member/feedback-add", - "style": { - "navigationBarTitleText": "我要反馈" - } - }, - { - "path": "member/logout", - "style": { - "navigationBarTitleText": "账号注销" - } - }, - { - "path": "member/message", - "style": { - "navigationBarTitleText": "用户消息" - } - }, - { - "path": "member/messagedetail", - "style": { - "navigationBarTitleText": "消息详情" - } - }, - { - "path": "member/prize", - "style": { - "navigationBarTitleText": "我的奖品" - } - }, - { - "path": "member/receiveprize", - "style": { - "navigationBarTitleText": "填写信息" - } - }, - { - "path": "member/returnlist", - "style": { - "navigationBarTitleText": "售后服务" - } - }, - { - "path": "member/returndetail", - "style": { - "navigationBarTitleText": "退货详情" - } - }, - { - "path": "member/settlement-account", - "style": { - "navigationBarTitleText": "提现账号" - } - }, - { - "path": "member/settlement-account-manage", - "style": { - "navigationBarTitleText": "账号管理" - } - }, - { - "path" : "member/payqrcode", - "style" : { - "navigationBarTitleText": "扫码支付" - } - }, - { - "path" : "member/store-apply", - "style" : { - "navigationBarTitleText": "店铺入驻" - } - }, - { - "path" : "member/activity", - "style" : { - "navigationBarTitleText": "我报名的活动" - } - }, - { - "path" : "member/sign", - "style" : { - "navigationBarTitleText": "签到" - } - }, - { - "path" : "card/list", - "style" : { - "navigationBarTitleText": "我的卡包" - } - }, - { - "path" : "card/user_list", - "style" : { - "navigationBarTitleText": "我的卡包" - } - }, - { - "path" : "card/detail", - "style" : { - "navigationBarTitleText": "卡片详情" - } - }, - /* + { + "path": "member/coupon", + "style": { + "navigationBarTitleText": "优惠券" + } + }, + { + "path": "member/favorites", + "style": { + "navigationBarTitleText": "商品收藏" + } + }, + { + "path": "member/favorites-store", + "style": { + "navigationBarTitleText": "店铺收藏" + } + }, + { + "path": "member/browse", + "style": { + "navigationBarTitleText": "浏览记录" + } + }, + { + "path": "member/feedback", + "style": { + "navigationBarTitleText": "反馈列表" + } + }, + { + "path": "member/feedback-add", + "style": { + "navigationBarTitleText": "我要反馈" + } + }, + { + "path": "member/logout", + "style": { + "navigationBarTitleText": "账号注销" + } + }, + { + "path": "member/message", + "style": { + "navigationBarTitleText": "用户消息" + } + }, + { + "path": "member/messagedetail", + "style": { + "navigationBarTitleText": "消息详情" + } + }, + { + "path": "member/prize", + "style": { + "navigationBarTitleText": "我的奖品" + } + }, + { + "path": "member/receiveprize", + "style": { + "navigationBarTitleText": "填写信息" + } + }, + { + "path": "member/returnlist", + "style": { + "navigationBarTitleText": "售后服务" + } + }, + { + "path": "member/returndetail", + "style": { + "navigationBarTitleText": "退货详情" + } + }, + { + "path": "member/settlement-account", + "style": { + "navigationBarTitleText": "提现账号" + } + }, + { + "path": "member/settlement-account-manage", + "style": { + "navigationBarTitleText": "账号管理" + } + }, + { + "path": "member/payqrcode", + "style": { + "navigationBarTitleText": "扫码支付" + } + }, + { + "path": "member/store-apply", + "style": { + "navigationBarTitleText": "店铺入驻" + } + }, + { + "path": "member/activity", + "style": { + "navigationBarTitleText": "我报名的活动" + } + }, + { + "path": "member/sign", + "style": { + "navigationBarTitleText": "签到" + } + }, + { + "path": "card/list", + "style": { + "navigationBarTitleText": "我的卡包" + } + }, + { + "path": "card/user_list", + "style": { + "navigationBarTitleText": "我的卡包" + } + }, + { + "path": "card/detail", + "style": { + "navigationBarTitleText": "卡片详情" + } + }, + /* { "path": "member/info", "style":{ @@ -486,300 +489,297 @@ }, */ - { - "path": "fans/index", - "style": { - "navigationBarTitleText": "推广中心", - "app-plus": { - "titleNView": { - "type": "transparent" - } - } - } - }, - - { - "path": "fans/list", - "style": { - "navigationBarTitleText": "我的粉丝" - } - }, - - { - "path": "fans/profitlist", - "style": { - "navigationBarTitleText": "我的收益" - } - }, - - { - "path": "fans/endorsement", - "style": { - "navigationBarTitleText": "我要代言" - } - }, - { - "path": "fans/fansrank", - "style": { - "navigationBarTitleText": "粉丝排行榜" - } - }, - - - { - "path": "order/detail", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "order/list", - "style": { - "navigationBarTitleText": "我的订单" - } - }, - { - "path": "order/logistics", - "style": { - "navigationBarTitleText": "物流进度" - } - }, - { - "path": "address/list", - "style": { - "navigationBarTitleText": "地址列表", - "enablePullDownRefresh": true - } - }, - { - "path": "address/manage", - "style": { - "navigationBarTitleText": "地址管理" - } - }, - - { - "path": "cash/predeposit", - "style": { - "navigationBarTitleText": "账户余额" - } - }, - - { - "path": "cash/balance", - "style": { - "navigationBarTitleText": "我的财富" - } - }, - - { - "path": "cash/predepositlist", - "style": { - "navigationBarTitleText": "资金明细" - } - }, - - - { - "path": "cash/recharge", - "style": { - "navigationBarTitleText": "余额充值" - } - }, - - { - "path": "cash/rechargelist", - "style": { - "navigationBarTitleText": "充值记录" - } - }, - - { - "path": "cash/predepositapply", - "style": { - "navigationBarTitleText": "提现申请" - } - }, - { - "path": "cash/predepositapplylist", - "style": { - "navigationBarTitleText": "提现明细" - } - }, - { - "path": "cash/commissionapply", - "style": { - "navigationBarTitleText": "佣金转入余额" - } - }, - { - "path": "cash/commissionwithdraw", - "style": { - "navigationBarTitleText": "佣金提现" - } - }, - - { - "path": "cash/bankcard-list", - "style": { - "navigationBarTitleText": "账号列表" - } - }, - { - "path": "cash/bankcard-add", - "style": { - "navigationBarTitleText": "添加账号" - } - }, - - { - "path": "product/comment", - "style": { - "navigationBarTitleText": "商品评价" - } - }, - { - "path": "product/return", - "style": { - "navigationBarTitleText": "售后申请" - } - }, - { - "path": "product/coupon", - "style": { - "navigationBarTitleText": "优惠券商品" - } - } - ] + { + "path": "fans/index", + "style": { + "navigationBarTitleText": "推广中心", + "app-plus": { + "titleNView": { + "type": "transparent" + } + } + } }, - { - "root": "activity", - "pages": [{ - "path": "coupon/list", - "style": { - "navigationBarTitleText": "领取优惠券" - } - }, - { - "path": "coupon/member", - "style": { - "navigationBarTitleText": "使用优惠券" - } - }, - { - "path": "coupon/detail", - "style": { - "navigationBarTitleText": "优惠券详情" - } - }, - { - "path": "cutprice/list", - "style": { - "navigationBarTitleText": "砍价活动" - } - }, - { - "path": "cutprice/detail", - "style": { - "navigationBarTitleText": "砍价详情" - } - }, + { + "path": "fans/list", + "style": { + "navigationBarTitleText": "我的粉丝" + } + }, - { - "path": "cutprice/userlist", - "style": { - "navigationBarTitleText": "我的砍价" - } - }, + { + "path": "fans/profitlist", + "style": { + "navigationBarTitleText": "我的收益" + } + }, - { - "path": "market/list", - "style": { - "navigationBarTitleText": "活动中心" - } - }, - { - "path": "market/detail", - "style": { - "navigationBarTitleText": "活动详情" - } - }, - { - "path": "market/signin", - "style": { - "navigationBarTitleText": "活动报名" - } - }, - { - "path": "market/checkin", - "style": { - "navigationBarTitleText": "活动签到" - } - }, + { + "path": "fans/endorsement", + "style": { + "navigationBarTitleText": "我要代言" + } + }, + { + "path": "fans/fansrank", + "style": { + "navigationBarTitleText": "粉丝排行榜" + } + }, + { + "path": "order/detail", + "style": { + "navigationStyle": "custom" + } + }, + { + "path": "order/list", + "style": { + "navigationBarTitleText": "我的订单" + } + }, + { + "path": "order/logistics", + "style": { + "navigationBarTitleText": "物流进度" + } + }, + { + "path": "address/list", + "style": { + "navigationBarTitleText": "地址列表", + "enablePullDownRefresh": true + } + }, + { + "path": "address/manage", + "style": { + "navigationBarTitleText": "地址管理" + } + }, - { - "path": "fightgroup/order", - "style": { - "navigationBarTitleText": "拼团订单" - } - }, - { - "path": "fightgroup/detail", - "style": { - "navigationBarTitleText": "拼团详情" - } - }, - { - "path": "fightgroup/list", - "style": { - "navigationBarTitleText": "拼团" - } - }, - { - "path": "smashgoldeneggs/list", - "style": { - "navigationBarTitleText": "抽奖活动" - } - }, - { - "path": "smashgoldeneggs/detail", - "style": { - "navigationBarTitleText": "砸金蛋" - } - }, - { - "path": "luckydraw/detail", - "style": { - "navigationBarTitleText": "幸运大抽奖" - } - }, - { - "path": "plantform/secondlist", - "style": { - "navigationBarTitleText": "限时秒杀" - } - }, - { - "path": "gift/exchange", - "style": { - "navigationBarTitleText": "礼包兑换" - } - }, - { - "path": "giftbag/list", - "style": { - "navigationBarTitleText": "礼包专区" - } - }, - { - "path": "giftbag/detail", - "style": { - "navigationBarTitleText": "礼包详情" - } - } - /*, + { + "path": "cash/predeposit", + "style": { + "navigationBarTitleText": "账户余额" + } + }, + + { + "path": "cash/balance", + "style": { + "navigationBarTitleText": "我的财富" + } + }, + + { + "path": "cash/predepositlist", + "style": { + "navigationBarTitleText": "资金明细" + } + }, + + { + "path": "cash/recharge", + "style": { + "navigationBarTitleText": "余额充值" + } + }, + + { + "path": "cash/rechargelist", + "style": { + "navigationBarTitleText": "充值记录" + } + }, + + { + "path": "cash/predepositapply", + "style": { + "navigationBarTitleText": "提现申请" + } + }, + { + "path": "cash/predepositapplylist", + "style": { + "navigationBarTitleText": "提现明细" + } + }, + { + "path": "cash/commissionapply", + "style": { + "navigationBarTitleText": "佣金转入余额" + } + }, + { + "path": "cash/commissionwithdraw", + "style": { + "navigationBarTitleText": "佣金提现" + } + }, + + { + "path": "cash/bankcard-list", + "style": { + "navigationBarTitleText": "账号列表" + } + }, + { + "path": "cash/bankcard-add", + "style": { + "navigationBarTitleText": "添加账号" + } + }, + + { + "path": "product/comment", + "style": { + "navigationBarTitleText": "商品评价" + } + }, + { + "path": "product/return", + "style": { + "navigationBarTitleText": "售后申请" + } + }, + { + "path": "product/coupon", + "style": { + "navigationBarTitleText": "优惠券商品" + } + } + ] + }, + { + "root": "activity", + "pages": [ + { + "path": "coupon/list", + "style": { + "navigationBarTitleText": "领取优惠券" + } + }, + { + "path": "coupon/member", + "style": { + "navigationBarTitleText": "使用优惠券" + } + }, + { + "path": "coupon/detail", + "style": { + "navigationBarTitleText": "优惠券详情" + } + }, + { + "path": "cutprice/list", + "style": { + "navigationBarTitleText": "砍价活动" + } + }, + { + "path": "cutprice/detail", + "style": { + "navigationBarTitleText": "砍价详情" + } + }, + + { + "path": "cutprice/userlist", + "style": { + "navigationBarTitleText": "我的砍价" + } + }, + + { + "path": "market/list", + "style": { + "navigationBarTitleText": "活动中心" + } + }, + { + "path": "market/detail", + "style": { + "navigationBarTitleText": "活动详情" + } + }, + { + "path": "market/signin", + "style": { + "navigationBarTitleText": "活动报名" + } + }, + { + "path": "market/checkin", + "style": { + "navigationBarTitleText": "活动签到" + } + }, + + { + "path": "fightgroup/order", + "style": { + "navigationBarTitleText": "拼团订单" + } + }, + { + "path": "fightgroup/detail", + "style": { + "navigationBarTitleText": "拼团详情" + } + }, + { + "path": "fightgroup/list", + "style": { + "navigationBarTitleText": "拼团" + } + }, + { + "path": "smashgoldeneggs/list", + "style": { + "navigationBarTitleText": "抽奖活动" + } + }, + { + "path": "smashgoldeneggs/detail", + "style": { + "navigationBarTitleText": "砸金蛋" + } + }, + { + "path": "luckydraw/detail", + "style": { + "navigationBarTitleText": "幸运大抽奖" + } + }, + { + "path": "plantform/secondlist", + "style": { + "navigationBarTitleText": "限时秒杀" + } + }, + { + "path": "gift/exchange", + "style": { + "navigationBarTitleText": "礼包兑换" + } + }, + { + "path": "giftbag/list", + "style": { + "navigationBarTitleText": "礼包专区" + } + }, + { + "path": "giftbag/detail", + "style": { + "navigationBarTitleText": "礼包详情" + } + } + /*, { "path": "plantform/list", "style": { @@ -835,708 +835,717 @@ } }*/ - - ] - }, - { - "root": "pagesub", - "pages": [ - { - "path": "index/category", - "style": { - "navigationBarTitleText": "", - "navigationStyle": "custom", - "app-plus": { - "titleNView": false - } - } - }, - - { - "path": "category/brands", - "style": { - "navigationBarTitleText": "品牌街", - "app-plus": { - "titleNView": false - } - } - }, - - { - "path": "index/store", - "style": { - "navigationBarTitleText": "", - "onReachBottomDistance": 60, - "enablePullDownRefresh": true - } - }, - - { - "path": "index/store-list", - "style": { - "navigationBarTitleText": "店铺街" - } - }, - { - "path": "search/search", - "style": { - "navigationBarTitleText": "搜索", - "enablePullDownRefresh": true - } - }, - { - "path": "login/active", - "style": { - "navigationBarTitleText": "" - } - }, - { - "path": "login/pwd", - "style": { - "navigationBarTitleText": "忘记密码" - } - }, - { - "path": "login/sms", - "style": { - "navigationBarTitleText": "登录" - } - }, - { - "path": "login/register", - "style": { - "navigationBarTitleText": "注册" - } - }, - { - "path": "login/forget", - "style": { - "navigationBarTitleText": "忘记密码" - } - }, - { - "path": "video/video", - "style": { - "navigationBarTitleText": "" - } - }, - - { - "path": "scan/scan", - "style": { - "navigationBarTitleText": "扫描", - "enablePullDownRefresh": true - } - }, - { - "path": "product/tag", - "style": { - "navigationBarTitleText": "", - "enablePullDownRefresh": true, - "app-plus": { - "titleNView": { - "type": "transparent" - } - } - } - }, - { - "path": "subsite/subsitelist", - "style": { - "navigationBarTitleText": "选择分站" - } - }, - { - "path": "westore/index", - "style": { - "navigationBarTitleText": "微小店", - "app-plus": { - "titleNView": { - "buttons": [{ - "type": "share" - }] - } - }, - "h5": { - "titleNView": {} - } - } - }, - { - "path": "diy-page/diy-page", - "style": { - "navigationBarTitleText": "专题页面", - "enablePullDownRefresh": true, - - "app-plus": { - "titleNView": { - "type": "transparent", - "buttons": [{ - "type": "share" - }] - } - }, - "h5": { - "titleNView": { - "type": "transparent" - } - } - } - }, - { - "path": "webpage/webpage", - "style": { - "navigationBarTitleText": "", - "enablePullDownRefresh": true - } - }, - { - "path": "webpage/web", - "style": { - "navigationBarTitleText": "..." - } - }, - { - "path": "article/index", - "style": { - "navigationBarTitleText": "资讯首页", - "enablePullDownRefresh": true, - - "app-plus": { - "titleNView": { - "type": "transparent", - "buttons": [{ - "type": "share" - }] - } - }, - "h5": { - "titleNView": { - "type": "transparent" - } - } - } - }, - { - "path": "article/category", - "style": { - "navigationBarTitleText": "资讯分类" - } - }, - { - "path": "article/list", - "style": { - "navigationBarTitleText": "资讯分类" - } - }, - { - "path": "article/detail", - "style": { - "navigationBarTitleText": "资讯详情", - "app-plus": { - "titleNView": { - "type": "transparent", - "buttons": [{ - "type": "share" - }] - } - }, - "h5": { - "titleNView": { - "type": "transparent" - } - } - } - }, - { - "path": "index/about", - "style": { - "navigationBarTitleText": "关于我们", - "app-plus": { - "titleNView": { - "type": "transparent" - } - } - } - }, - { - "path": "info/list", - "style": { - "navigationBarTitleText": "信息列表" - } - }, - { - "path": "info/edit", - "style": { - "navigationBarTitleText": "发布信息" - } - } - ] - }, - { - "root": "chain", - "pages": [{ - "path": "chain/list", - "style": { - "navigationBarTitleText": "附近门店" - } - }, - { - "path": "chain/index", - "style": { - "navigationBarTitleText": "门店首页" - } - }, - { - "path": "chain/favorable", - "style": { - "navigationBarTitleText": "优惠买单" - } - }, - { - "path": "chain/favorabledetail", - "style": { - "navigationBarTitleText": "买单详情" - } - }, - { - "path": "chain/scan", - "style": { - "navigationBarTitleText": "扫码点餐" - } - } - ] - }, - { - "root": "integral", - "pages": [ - - { - "path": "integral/integral", - "style": { - "navigationBarTitleText": "积分商城" - } - }, - { - "path": "integral/exchange", - "style": { - "navigationBarTitleText": "积分兑换" - } - }, - { - "path": "integral/list", - "style": { - "navigationBarTitleText": "积分明细" - } - }, - { - "path": "integral/record", - "style": { - "navigationBarTitleText": "兑换记录" - } - }, - { - "path": "integral/product", - "style": { - "navigationBarTitleText": "积分产品" - } - }, - { - "path": "sp/list", - "style": { - "navigationBarTitleText": "消费记录" - } - } - - ] - }, - { - "root": "community", - "pages": [{ - "path": "community/lists", - "style": { - "navigationBarTitleText": "帖子列表" - } - }, - { - "path": "community/category", - "style": { - "navigationBarTitleText": "版块" - } - }, - { - "path": "community/userspace", - "style": { - "navigationBarTitleText": "用户空间" - } - }, - { - "path": "community/post", - "style": { - "navigationBarTitleText": "发帖" - } - }, - { - "path": "community/plate", - "style": { - "navigationBarTitleText": "版块" - } - }, - { - "path": "community/searchsq", - "style": { - "navigationBarTitleText": "商品搜索" - } - }, - { - "path": "community/detail", - "style": { - "navigationBarTitleText": "帖子详情" - } - }, - { - "path": "nvueSwiper/nvueSwiper", - "style": { - "navigationBarTitleText": "帖子详情" - } - }, - { - "path": "community/video", - "navigationBarTitleText": "短视频", - "style": { - "app-plus": { - "titleNView": { - "type": "transparent" - /* - "buttons": [{ - "type": "share" - }, - { - "type" : "favorite" - } - ] - */ - } - }, - "h5": { - "titleNView": { - "type": "transparent" - /* - "buttons": [{ - "type": "share" - }, - { - "type" : "favorite" - } - ] - */ - } - } - } - } - ] - }, - // { - // "root": "paotui", - // "pages": [{ - // "path": "index/index", - // "style": { - // "navigationBarTitleText": "骑手大厅" - // } - // }, - // { - // "path": "index/authentication", - // "style": { - // "navigationBarTitleText": "" - // } - // }, - // { - // "path": "commission/lists", - // "style": { - // "navigationBarTitleText": "账户余额" - // } - // }, - // { - // "path": "order/lists", - // "style": { - // "navigationBarTitleText": "完成订单" - // } - // }, - // { - // "path": "order/detail", - // "style": { - // "navigationBarTitleText": "订单详情" - // } - // }, - // { - // "path": "order/navigation", - // "style": { - // "navigationBarTitleText": "订单导航" - // } - // }, - // { - // "path": "order/signinpic", - // "style": { - // "navigationBarTitleText": "上传照片" - // } - // } - // ] - // }, - { - "root": "seller", - "pages": [{ - "path": "index/index", - "style": { - "navigationBarTitleText": "商家中心", - "app-plus": { - "titleNView": { - "type": "transparent" - } - }, - "h5": { - "titleNView": { - "type": "transparent" - } - } - } - }, - { - "path": "order/lists", - "style": { - "navigationBarTitleText": "订单列表" - } - }, - { - "path": "order/deliver", - "style": { - "navigationBarTitleText": "发货" - } - }, - { - "path": "order/detail", - "style": { - "navigationBarTitleText": "订单详情" - } - }, - - { - "path": "product/lists", - "style": { - "navigationBarTitleText": "商品管理" - } - }, - { - "path": "product/pool", - "style": { - "navigationBarTitleText": "产品池" - } - }, - - { - "path": "product/add", - "style": { - "navigationBarTitleText": "发布商品" - } - }, - { - "path": "product/save", - "style": { - "navigationBarTitleText": "商品修改" - } - }, - { - "path": "product/sale", - "style": { - "navigationBarTitleText": "销售开单" - } - }, - - { - "path": "order/write", - "style": { - "navigationBarTitleText": "扫码核销" - } - }, - { - "path": "order/scan", - "style": { - "navigationBarTitleText": "扫码核销" - } - }, - { - "path": "order/pay", - "style": { - "navigationBarTitleText": "收款" - } - }, - { - "path": "order/autograph", - "style": { - "navigationBarTitleText": "签名" - } - }, - { - "path": "store/account", - "style": { - "navigationBarTitleText": "店铺设置" - } - }, - - { - "path": "store/express", - "style": { - "navigationBarTitleText": "选择物流" - } - }, - - { - "path": "store/address", - "style": { - "navigationBarTitleText": "发货地址管理" - } - }, - - { - "path": "store/manage", - "style": { - "navigationBarTitleText": "修改发货地址" - } - }, - - { - "path": "user/address", - "style": { - "navigationBarTitleText": "选择客户收货地址" - } - }, - - { - "path": "user/manage", - "style": { - "navigationBarTitleText": "添加客户收货地址" - } - }, - - { - "path": "user/add", - "style": { - "navigationBarTitleText": "新增会员" - } - }, - - { - "path": "user/cart", - "style": { - "navigationBarTitleText": "开单" - } - } - ] - }, - { - "root": "hall", - "pages": [{ - "path": "purchase/add", - "style": { - "navigationBarTitleText": "发布采购" - } - }, - { - "path": "purchase/lists", - "style": { - "navigationBarTitleText": "采购大厅" - } - }, - { - "path": "purchase/detail", - "style": { - "navigationBarTitleText": "采购详情" - } - }, - { - "path": "purchase/my", - "style": { - "navigationBarTitleText": "我的采购" - } - }, - { - "path": "purchase/receive", - "style": { - "navigationBarTitleText": "我的报价" - } - } - ] - }, - { - "root": "im", - "pages": [{ - "path": "chat/chat", - "style": { - "navigationBarTitleText": "" - } - }, - { - "path": "infos/infos", - "style": { - "navigationBarTitleText": "" - } - } - ] - } - - ], - - "globalStyle": { - "navigationBarTextStyle": "black", - "navigationBarTitleText": "商城系统", - "navigationBarBackgroundColor": "#FFFFFF", - "backgroundColor": "#F8F8F8", - "navigationStyle": "default", - - "pageOrientation": "portrait", //横屏配置,全局屏幕旋转设置(仅 APP/微信/QQ小程序),支持 auto / portrait / landscape - "rpxCalcMaxDeviceWidth": 960, - "rpxCalcBaseDeviceWidth": 375, - "rpxCalcIncludeWidth": 750 + ] }, - "easycom": { - "autoscan": true - }, - "tabBar": { - "color": "#7A7E83", - "borderStyle": "black", - "backgroundColor": "#ffffff", + { + "root": "pagesub", + "pages": [ + { + "path": "index/category", + "style": { + "navigationBarTitleText": "", + "navigationStyle": "custom", + "app-plus": { + "titleNView": false + } + } + }, - "selectedColor": "#DB384C", - "list": [ - { - "pagePath": "pages/index/index", - "iconPath": "static/images/tabBar1.png", - "selectedIconPath": "static/images/tabBar_sel1.png", - "text": "推荐" - }, - { - "pagePath": "pages/category/category", - "iconPath": "static/images/tabBar2.png", - "selectedIconPath": "static/images/tabBar_sel2.png", - "text": "分类" - }, - { - "pagePath": "pages/index/image", - "iconPath": "static/images/tabBarSns.png", - "selectedIconPath": "static/images/tabBarSns_sel.png", - "text": "发现" - }, - { - "pagePath": "pages/cart/cart", - "iconPath": "static/images/tabBar3.png", - "selectedIconPath": "static/images/tabBar_sel3.png", - "text": "购物车" + { + "path": "category/brands", + "style": { + "navigationBarTitleText": "品牌街", + "app-plus": { + "titleNView": false + } + } + }, + + { + "path": "index/store", + "style": { + "navigationBarTitleText": "", + "onReachBottomDistance": 60, + "enablePullDownRefresh": true + } + }, + + { + "path": "index/store-list", + "style": { + "navigationBarTitleText": "店铺街" + } + }, + { + "path": "search/search", + "style": { + "navigationBarTitleText": "搜索", + "enablePullDownRefresh": true + } + }, + { + "path": "login/active", + "style": { + "navigationBarTitleText": "" + } + }, + { + "path": "login/pwd", + "style": { + "navigationBarTitleText": "忘记密码" + } + }, + { + "path": "login/sms", + "style": { + "navigationBarTitleText": "登录" + } + }, + { + "path": "login/register", + "style": { + "navigationBarTitleText": "注册" + } + }, + { + "path": "login/forget", + "style": { + "navigationBarTitleText": "忘记密码" + } + }, + { + "path": "video/video", + "style": { + "navigationBarTitleText": "" + } + }, + + { + "path": "scan/scan", + "style": { + "navigationBarTitleText": "扫描", + "enablePullDownRefresh": true + } + }, + { + "path": "product/tag", + "style": { + "navigationBarTitleText": "", + "enablePullDownRefresh": true, + "app-plus": { + "titleNView": { + "type": "transparent" + } + } + } + }, + { + "path": "subsite/subsitelist", + "style": { + "navigationBarTitleText": "选择分站" + } + }, + { + "path": "westore/index", + "style": { + "navigationBarTitleText": "微小店", + "app-plus": { + "titleNView": { + "buttons": [ + { + "type": "share" + } + ] + } }, - { - "pagePath": "pages/index/member", - "iconPath": "static/images/tabBar4.png", - "selectedIconPath": "static/images/tabBar_sel4.png", - "text": "我的" - } - ] - } + "h5": { + "titleNView": {} + } + } + }, + { + "path": "diy-page/diy-page", + "style": { + "navigationBarTitleText": "专题页面", + "enablePullDownRefresh": true, + + "app-plus": { + "titleNView": { + "type": "transparent", + "buttons": [ + { + "type": "share" + } + ] + } + }, + "h5": { + "titleNView": { + "type": "transparent" + } + } + } + }, + { + "path": "webpage/webpage", + "style": { + "navigationBarTitleText": "", + "enablePullDownRefresh": true + } + }, + { + "path": "webpage/web", + "style": { + "navigationBarTitleText": "..." + } + }, + { + "path": "article/index", + "style": { + "navigationBarTitleText": "资讯首页", + "enablePullDownRefresh": true, + + "app-plus": { + "titleNView": { + "type": "transparent", + "buttons": [ + { + "type": "share" + } + ] + } + }, + "h5": { + "titleNView": { + "type": "transparent" + } + } + } + }, + { + "path": "article/category", + "style": { + "navigationBarTitleText": "资讯分类" + } + }, + { + "path": "article/list", + "style": { + "navigationBarTitleText": "资讯分类" + } + }, + { + "path": "article/detail", + "style": { + "navigationBarTitleText": "资讯详情", + "app-plus": { + "titleNView": { + "type": "transparent", + "buttons": [ + { + "type": "share" + } + ] + } + }, + "h5": { + "titleNView": { + "type": "transparent" + } + } + } + }, + { + "path": "index/about", + "style": { + "navigationBarTitleText": "关于我们", + "app-plus": { + "titleNView": { + "type": "transparent" + } + } + } + }, + { + "path": "info/list", + "style": { + "navigationBarTitleText": "信息列表" + } + }, + { + "path": "info/edit", + "style": { + "navigationBarTitleText": "发布信息" + } + } + ] + }, + { + "root": "chain", + "pages": [ + { + "path": "chain/list", + "style": { + "navigationBarTitleText": "附近门店" + } + }, + { + "path": "chain/index", + "style": { + "navigationBarTitleText": "门店首页" + } + }, + { + "path": "chain/favorable", + "style": { + "navigationBarTitleText": "优惠买单" + } + }, + { + "path": "chain/favorabledetail", + "style": { + "navigationBarTitleText": "买单详情" + } + }, + { + "path": "chain/scan", + "style": { + "navigationBarTitleText": "扫码点餐" + } + } + ] + }, + { + "root": "integral", + "pages": [ + { + "path": "integral/integral", + "style": { + "navigationBarTitleText": "积分商城" + } + }, + { + "path": "integral/exchange", + "style": { + "navigationBarTitleText": "积分兑换" + } + }, + { + "path": "integral/list", + "style": { + "navigationBarTitleText": "积分明细" + } + }, + { + "path": "integral/record", + "style": { + "navigationBarTitleText": "兑换记录" + } + }, + { + "path": "integral/product", + "style": { + "navigationBarTitleText": "积分产品" + } + }, + { + "path": "sp/list", + "style": { + "navigationBarTitleText": "消费记录" + } + } + ] + }, + { + "root": "community", + "pages": [ + { + "path": "community/lists", + "style": { + "navigationBarTitleText": "帖子列表" + } + }, + { + "path": "community/category", + "style": { + "navigationBarTitleText": "版块" + } + }, + { + "path": "community/userspace", + "style": { + "navigationBarTitleText": "用户空间" + } + }, + { + "path": "community/post", + "style": { + "navigationBarTitleText": "发帖" + } + }, + { + "path": "community/plate", + "style": { + "navigationBarTitleText": "版块" + } + }, + { + "path": "community/searchsq", + "style": { + "navigationBarTitleText": "商品搜索" + } + }, + { + "path": "community/detail", + "style": { + "navigationBarTitleText": "帖子详情" + } + }, + { + "path": "nvueSwiper/nvueSwiper", + "style": { + "navigationBarTitleText": "帖子详情" + } + }, + { + "path": "community/video", + "navigationBarTitleText": "短视频", + "style": { + "app-plus": { + "titleNView": { + "type": "transparent" + /* + "buttons": [{ + "type": "share" + }, + { + "type" : "favorite" + } + ] + */ + } + }, + "h5": { + "titleNView": { + "type": "transparent" + /* + "buttons": [{ + "type": "share" + }, + { + "type" : "favorite" + } + ] + */ + } + } + } + } + ] + }, + // { + // "root": "paotui", + // "pages": [{ + // "path": "index/index", + // "style": { + // "navigationBarTitleText": "骑手大厅" + // } + // }, + // { + // "path": "index/authentication", + // "style": { + // "navigationBarTitleText": "" + // } + // }, + // { + // "path": "commission/lists", + // "style": { + // "navigationBarTitleText": "账户余额" + // } + // }, + // { + // "path": "order/lists", + // "style": { + // "navigationBarTitleText": "完成订单" + // } + // }, + // { + // "path": "order/detail", + // "style": { + // "navigationBarTitleText": "订单详情" + // } + // }, + // { + // "path": "order/navigation", + // "style": { + // "navigationBarTitleText": "订单导航" + // } + // }, + // { + // "path": "order/signinpic", + // "style": { + // "navigationBarTitleText": "上传照片" + // } + // } + // ] + // }, + { + "root": "seller", + "pages": [ + { + "path": "index/index", + "style": { + "navigationBarTitleText": "商家中心", + "app-plus": { + "titleNView": { + "type": "transparent" + } + }, + "h5": { + "titleNView": { + "type": "transparent" + } + } + } + }, + { + "path": "order/lists", + "style": { + "navigationBarTitleText": "订单列表" + } + }, + { + "path": "order/deliver", + "style": { + "navigationBarTitleText": "发货" + } + }, + { + "path": "order/detail", + "style": { + "navigationBarTitleText": "订单详情" + } + }, + + { + "path": "product/lists", + "style": { + "navigationBarTitleText": "商品管理" + } + }, + { + "path": "product/pool", + "style": { + "navigationBarTitleText": "产品池" + } + }, + + { + "path": "product/add", + "style": { + "navigationBarTitleText": "发布商品" + } + }, + { + "path": "product/save", + "style": { + "navigationBarTitleText": "商品修改" + } + }, + { + "path": "product/sale", + "style": { + "navigationBarTitleText": "销售开单" + } + }, + + { + "path": "order/write", + "style": { + "navigationBarTitleText": "扫码核销" + } + }, + { + "path": "order/scan", + "style": { + "navigationBarTitleText": "扫码核销" + } + }, + { + "path": "order/pay", + "style": { + "navigationBarTitleText": "收款" + } + }, + { + "path": "order/autograph", + "style": { + "navigationBarTitleText": "签名" + } + }, + { + "path": "store/account", + "style": { + "navigationBarTitleText": "店铺设置" + } + }, + + { + "path": "store/express", + "style": { + "navigationBarTitleText": "选择物流" + } + }, + + { + "path": "store/address", + "style": { + "navigationBarTitleText": "发货地址管理" + } + }, + + { + "path": "store/manage", + "style": { + "navigationBarTitleText": "修改发货地址" + } + }, + + { + "path": "user/address", + "style": { + "navigationBarTitleText": "选择客户收货地址" + } + }, + + { + "path": "user/manage", + "style": { + "navigationBarTitleText": "添加客户收货地址" + } + }, + + { + "path": "user/add", + "style": { + "navigationBarTitleText": "新增会员" + } + }, + + { + "path": "user/cart", + "style": { + "navigationBarTitleText": "开单" + } + } + ] + }, + { + "root": "hall", + "pages": [ + { + "path": "purchase/add", + "style": { + "navigationBarTitleText": "发布采购" + } + }, + { + "path": "purchase/lists", + "style": { + "navigationBarTitleText": "采购大厅" + } + }, + { + "path": "purchase/detail", + "style": { + "navigationBarTitleText": "采购详情" + } + }, + { + "path": "purchase/my", + "style": { + "navigationBarTitleText": "我的采购" + } + }, + { + "path": "purchase/receive", + "style": { + "navigationBarTitleText": "我的报价" + } + } + ] + }, + { + "root": "im", + "pages": [ + { + "path": "chat/chat", + "style": { + "navigationBarTitleText": "" + } + }, + { + "path": "infos/infos", + "style": { + "navigationBarTitleText": "" + } + } + ] + } + ], + + "globalStyle": { + "navigationBarTextStyle": "black", + "navigationBarTitleText": "商城系统", + "navigationBarBackgroundColor": "#FFFFFF", + "backgroundColor": "#F8F8F8", + "navigationStyle": "default", + + "pageOrientation": "portrait", //横屏配置,全局屏幕旋转设置(仅 APP/微信/QQ小程序),支持 auto / portrait / landscape + "rpxCalcMaxDeviceWidth": 960, + "rpxCalcBaseDeviceWidth": 375, + "rpxCalcIncludeWidth": 750 + }, + "easycom": { + "autoscan": true + }, + "tabBar": { + "color": "#7A7E83", + "borderStyle": "black", + "backgroundColor": "#ffffff", + + "selectedColor": "#DB384C", + "list": [ + { + "pagePath": "pages/index/index", + "iconPath": "static/images/tabBar1.png", + "selectedIconPath": "static/images/tabBar_sel1.png", + "text": "推荐" + }, + { + "pagePath": "pages/category/category", + "iconPath": "static/images/tabBar2.png", + "selectedIconPath": "static/images/tabBar_sel2.png", + "text": "分类" + }, + { + "pagePath": "pages/index/image", + "iconPath": "static/images/tabBarSns.png", + "selectedIconPath": "static/images/tabBarSns_sel.png", + "text": "发现" + }, + { + "pagePath": "pages/cart/cart", + "iconPath": "static/images/tabBar3.png", + "selectedIconPath": "static/images/tabBar_sel3.png", + "text": "购物车" + }, + { + "pagePath": "pages/index/member", + "iconPath": "static/images/tabBar4.png", + "selectedIconPath": "static/images/tabBar_sel4.png", + "text": "我的" + } + ] + } }