brand.js
1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* Created by PhpStorm.
* User: Targaryen
* Date: 2016/7/19
* Time: 10:03
*/
'use strict';
const mRoot = '../models';
const brandModel = require(`${mRoot}/brand`);
/**
* 品牌,品类,店铺相关页面
*/
module.exports = {
/* 品牌列表页 */
brandList: (req, res) => {
res.render('brand/brand-list', {
module: 'channel',
page: 'brand-list'
});
},
/* 获取品牌列表数据 */
getBrandList: (req, res, next) => {
brandModel.getBrandListData({
channel: req.query.channel || req.cookies._Channel || 'men'
}).then(result => {
res.json(result);
}).catch(next);
},
/* 全部分类 */
cate: (req, res) => {
res.render('brand/cate', {
module: 'channel',
page: 'cate',
title: '全部分类'
});
},
// 全部分类api
getCateList: (req, res, next) => {
brandModel.getCateListData({
app_type: 1
}).then(result => {
res.json(result);
}).catch(next);
},
// 品类资源位
cateResource: (req, res) => {
res.render('brand/cate-resource', {
module: 'channel',
page: 'cate-resource'
});
}
};