second-hand-api-map.js
834 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
module.exports = {
// 二手商品详情
'/api/ufo/secondhand/productDetail': {
ufo: true,
auth: false,
api: 'ufo.product.secondHand.data',
params: {
skup: { type: Number } // 商品池id
},
},
// 相同尺寸二手商品列表
'/api/ufo/secondhand/list': {
ufo: true,
auth: false,
api: 'ufo.product.secondHand.list',
params: {
storage_id: { type: Number }
},
},
// 二手商品 筛选组件数据
'/api/ufo/secondhand/filter': {
ufo: true,
auth: false,
api: 'ufo.product.secondHand.list.filter',
params: {
storage_id: { type: Number }
},
},
'/api/ufo/secondhand/storageCount': {
ufo: true,
auth: false,
api: 'ufo.product.secondHand.list.count',
params: {
storage_id: { type: Number } // 库存id
},
}
};