list-api-map.js
2.13 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
63
64
65
66
67
68
69
module.exports = {
'/api/ufo/list/productList': {
ufo: true,
api: 'ufo.product.search.list',
params: {
page: {type: Number},
size: {type: Number},
type: {type: Number}, // type:0,推荐;1,热销;2,即将发售; 3,品类; 4,品牌;5,系列;6,搜索 7, 收藏
order: {type: String}, // 指定排序
productPool: {type: Number}, // 商品池id
sort: {type: Number}, // 品类id
brand: {type: Number}, // 品牌id
series: {type: Number}, // 系列id
gender: {type: String}, // 性别
query: {type: String}, // 搜索词
limit: {type: Number}, // 每页记录数
coupon_token: {type: String}, // 优惠券token
},
},
'/api/ufo/list/filterData': {
ufo: true,
api: 'ufo.product.search.list.filter',
params: {
query: {type: String},
type: {type: Number}, // type:0,推荐;1,热销;2,即将发售; 3,品类; 4,品牌;5,系列;6,搜索 7, 收藏
order: {type: String}, // 指定排序
productPool: {type: Number}, // 商品池id
sort: {type: Number}, // 品类id
brand: {type: Number}, // 品牌id
series: {type: Number}, // 系列id
gender: {type: String}, // 性别
}
},
'/api/ufo/secondhand/filterData': {
ufo: true,
api: 'ufo.product.search.secondhand.filter',
params: {
}
},
'/api/ufo/secondhand/skupList': {
ufo: true,
api: 'ufo.product.search.secondhand.skupList',
params: {
order: {type: String}, // 指定排序
maxSort: {type: String}, // 品类id
brand: {type: String}, // 品牌id
gender: {type: String}, // 性别
preSale_flag: {type: String}, // 新旧程度
price: {type: String}, // 价格
size: {type: String}, // 尺码
productPool: {type: Number}, // 商品池id
},
auth: true,
},
'/api/ufo/list/searchWords': {
ufo: true,
api: 'ufo.product.searchWord',
params: {
word_type: {type: Number}
},
},
'/api/ufo/list/searchSuggest': {
ufo: true,
api: 'ufo.product.search.suggest',
params: {
query: {type: String}
},
}
};