search-process.js
891 Bytes
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
/**
* 搜索相关数据处理
* @author: wsl<shuiling.wang@yoho.cn>
* @date: 2016/7/29
*/
/**
* 根据频道判断出性别
*/
const getGenderByChannel =(channel) => {
channel = channel ? channel : 'boys';
switch (channel) {
case 'boys': // 男
return '1,3';
case 'girls': // 女
return '2,3';
default: // 其它
return '1,2,3';
}
};
// 频道转换
const getChannelType = (channel) => {
channel = channel ? channel : 'boys';
switch (channel) {
case 'boys': // 男
return '1';
case 'girls': // 女
return '2';
case 'kids': // 童装
return '3';
case 'lifestyle': // 创意生活
return '4';
default: // all
return '1,2,3,4';
}
};
module.exports = {
getGenderByChannel,
getChannelType
};