...
|
...
|
@@ -33,11 +33,11 @@ router.get('/product/list.json', productList.fetchProducts); |
|
|
const shop = require(`${cRoot}/shop`);
|
|
|
|
|
|
router.get('/brand', shop.index); // 品牌 集合页
|
|
|
router.get(/\/brand\/share\/(.*)/, shop.shopShare); // 品牌店铺分享页面
|
|
|
router.get('/product/shop/info.json', shop.getShopInfo); // 店铺介绍
|
|
|
router.get('/product/shop/goods.json', shop.getBrandShopGoods); // 店铺商品列表
|
|
|
router.post('/product/shop/collect.json', shop.collectShop); // 收藏品牌店铺
|
|
|
router.get('/product/shop/(.*)/', shop.index); // 品牌店铺页
|
|
|
router.get('/product/shop/:domain/', shop.index); // 品牌店铺页
|
|
|
router.get('/product/shop/:domain/share', shop.shopShare); // 品牌店铺页
|
|
|
|
|
|
// 商品详情controller
|
|
|
const detail = require(`${cRoot}/detail`);
|
...
|
...
|
@@ -51,6 +51,7 @@ router.get(/\/product\/cart-count.json/, detail.getCartCount); |
|
|
router.get(/\/product\/search_product\.json/, detail.search);
|
|
|
|
|
|
// alias: TODO: 测试完成 删除一下router,并更新资源位
|
|
|
router.get(/\/brand\/share\/(.*)/, shop.shopShare); // 品牌店铺分享页面
|
|
|
router.get(/\/item\/([\d]+)(.*)\.html/, detail.index); // 商品详情routers
|
|
|
router.get(/\/brand\/(.*)/, shop.index); // 店铺首页
|
|
|
|
...
|
...
|
|