...
|
...
|
@@ -66,35 +66,25 @@ router.get('/index/isfav', favorite.isFavoriteBrand);// 品牌收藏状态 |
|
|
// 搜索
|
|
|
router.get('/search/index', search.index);
|
|
|
router.get('/search/filter/brands', search.serachFilterBrands);
|
|
|
|
|
|
// 搜索提示
|
|
|
router.get('/search/suggest', search.suggest);
|
|
|
|
|
|
router.get('/search/suggest', search.suggest); // 搜索提示
|
|
|
router.get('/api/suggest', search.suggest4Old);
|
|
|
|
|
|
|
|
|
// 商品分类列表页
|
|
|
router.get('/list/index', list.index);
|
|
|
|
|
|
// 新品到着
|
|
|
router.get('/list/new', list.new);
|
|
|
|
|
|
// 品牌页
|
|
|
router.get('/index/brand', list.brand);
|
|
|
router.get('/index/about', list.brandAbout);
|
|
|
|
|
|
// 品牌店铺
|
|
|
router.get('/index/brand', list.brand); // 品牌店铺页
|
|
|
router.get('/index/about', list.brandAbout); // 品牌店铺介绍页
|
|
|
router.post('/index/isFavoriteBrand', list.isFavoriteBrand); // 判断用户是否收藏品牌
|
|
|
router.post('/index/getNodeContent', list.getNodeContent); // 品牌页水牌
|
|
|
router.post('/index/getAdnav', list.getAdnav); // 品牌页系列
|
|
|
router.get('/shoplist', list.shopList); // 店铺列表页
|
|
|
router.post('/shop/togglecollect', favorite.collectShop); // 店铺收藏
|
|
|
router.post('/index/isFavoriteShop', favorite.isFavShop); // 判断用户是否收藏品牌
|
|
|
|
|
|
// 品牌页水牌
|
|
|
router.post('/index/getNodeContent', list.getNodeContent);
|
|
|
|
|
|
// 品牌页系列
|
|
|
router.post('/index/getAdnav', list.getAdnav);
|
|
|
|
|
|
// 判断用户是否收藏品牌
|
|
|
router.post('/index/isFavoriteBrand', list.isFavoriteBrand);
|
|
|
|
|
|
// 学生优惠routers
|
|
|
router.get('/students', students.index); // students 首页
|
...
|
...
|
|