...
|
...
|
@@ -65,10 +65,13 @@ router.get('/outlets/special/detail', outlets.special); // 憟亥瘣餃憿 |
|
|
router.get('/outlets/list', outlets.list); // 奥莱品类页
|
|
|
router.get('/outlets/:channel', outlets.channel); // 奥莱频道页
|
|
|
|
|
|
// 商品分类列表页
|
|
|
// 商品详情
|
|
|
router.get('/list', outletsList.index);
|
|
|
router.get(/^\/([\d]+)(.*)/, detail.showMain); // 新的商品详情routers
|
|
|
router.get(/\/p([\d]+)(.*)/, detail.showMainBack); // 新的商品详情routers
|
|
|
router.get(/^\/([\d]+)(.*)/, detail.showMain); // 新的商品详情routers
|
|
|
router.get(/\/p([\d]+)(.*)/, detail.showMainBack); // 老的商品详情routers
|
|
|
|
|
|
router.get('/detail/header', detail.productHeader); // 价格数据重新获取接口
|
|
|
router.get('/detail/intro', detail.getProductIntro); // 商品详细介绍
|
|
|
router.get('/detail/comment', detail.indexComment); // 商品评论
|
|
|
router.get('/detail/consult', detail.indexConsult); // 商品咨询
|
|
|
router.post('/detail/consult', auth, detail.createConsult); // 创建咨询
|
...
|
...
|
@@ -77,7 +80,6 @@ router.get('/detail/consult/useful/:id', auth, detail.usefulConsult); // 霂 |
|
|
router.get('/detail/hotarea', detail.indexHotArea); // 商品热区
|
|
|
router.post('/index/favoriteBrand', favorite.changeFavoriteBrand); // 收藏品牌
|
|
|
router.post('/item/togglecollect', favorite.collectProduct); // 收藏商品
|
|
|
router.get('/detail/header', detail.productHeader); // 价格数据重新获取接口
|
|
|
router.get('/detail/return', detail.detailReturn); // 特殊商品退换货
|
|
|
router.get('/detail/recommend', detail.recommend); // 推荐商品
|
|
|
router.get('/index/isfav', favorite.isFavoriteBrand); // 品牌收藏状态
|
...
|
...
|
|