...
|
...
|
@@ -159,12 +159,12 @@ router.get('/search/brand/goods', search.searchBrandGoods); // 搜索品牌下 |
|
|
router.get('/search/shop/goods', search.searchShopGoods); // 搜索店铺下的商品
|
|
|
|
|
|
// 全球购路由重写
|
|
|
router.get('/list/global', globalPro.list); // 全球购列表页
|
|
|
router.get('/list/global(/*)?', rewrite.resolvePathParams, globalPro.list); // 全球购列表页
|
|
|
|
|
|
// 品类
|
|
|
router.get('/index/index', rewrite.sortParams, list.category);
|
|
|
router.get('/list/index', rewrite.sortParams, list.category); // 兼容 PC 的链接
|
|
|
router.get('/list*', rewrite.resolvePathParams, list.listNew); // 列表新的 URL
|
|
|
router.get('/list(/*)?', rewrite.resolvePathParams, list.listNew); // 列表新的 URL
|
|
|
router.get('/search/category', list.getCategoryGoods);
|
|
|
|
|
|
// 品牌 | 店铺
|
...
|
...
|
|