...
|
...
|
@@ -250,9 +250,10 @@ router.get('/couponSend', couponFloor.couponSend); // 获取优惠券 |
|
|
router.get('/birthday', auth, birthday.index); // 生日卷活动
|
|
|
router.get('/getCoupon', birthday.getCoupon); // 获取生日卷状态
|
|
|
|
|
|
router.get('/share-buy', update, shareBuy.index); // 分享购首页
|
|
|
router.get('/share-buy/detail', auth, update, shareBuy.detail); // 分享购详情页
|
|
|
router.get('/share-buy/my-rebeat', auth, update, shareBuy.myRebeat); // 我的返利
|
|
|
router.get('/share-buy', update('5.7.0'), shareBuy.index); // 分享购首页
|
|
|
router.get('/share-buy/detail', update('5.7.0'), auth, shareBuy.detail); // 分享购详情页
|
|
|
router.get('/share-buy/my-rebeat', update('5.7.0'), auth, shareBuy.myRebeat); // 我的返利
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = router; |
...
|
...
|
|