...
|
...
|
@@ -19,7 +19,7 @@ router.get(/^\/special\/(\d+)_(.*)\.html$/, specialController.special); |
|
|
|
|
|
// 领券中心
|
|
|
router.get('/coupon/index', coupon.index);
|
|
|
router.get('/coupon/couponstatus', coupon.getCouponStatus);
|
|
|
router.get('/coupon/couponstatus', auth, coupon.getCouponStatus);
|
|
|
router.get('/coupon/sendcoupon', auth, coupon.sendcoupon);
|
|
|
|
|
|
module.exports = router; |
|
|
\ No newline at end of file |
...
|
...
|
|