api-map.js
1.72 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
70
71
72
73
74
75
76
module.exports = {
'/api/product/data': {
api: 'app.product.data',
cache: true,
params: {
product_id: {type: Number},
uid: {type: Number, require: false}
}
},
'/api/coupon/yoho/list': {
api: 'app.coupons.get',
params: {
type: {type: String},
filter: {type: Number},
limit: {type: Number},
page: {type: Number}
}
},
'/api/coupon/yoho/num': {
api: 'app.coupons.getCouponNums',
params: {}
},
'/api/coupon/yoho/getcoupon': {
api: 'app.coupons.bindPCoupon',
params: {
coupon_code: {type: String}
}
},
'/api/coupon/ufo/list': {
api: 'ufo.coupons.get',
path: 'coupon',
ufo: true,
params: {}
},
'/api/ufo/seller/entryGoodsSizeList': {
ufo: true,
api: 'ufo.seller.entryGoodsSizeList',
params: {
productId: {type: Number},
limit: {type: Number},
page: {type: Number}
}
},
'/api/ufo/sellerOrder/computeAdjustPrice': {
ufo: true,
api: 'ufo.sellerOrder.computeAdjustPrice',
params: {
product_id: {type: Number},
storage_id: {type: Number},
new_price: {type: Number},
old_price: {type: Number},
num: {type: Number}
}
},
'/api/ufo/sellerOrder/batchAdjustPrice': {
ufo: true,
api: 'ufo.sellerOrder.batchAdjustPrice',
params: {
product_id: {type: Number},
storage_id: {type: Number},
new_price: {type: Number},
old_price: {type: Number},
num: {type: Number}
}
},
'/api/ufo/sellerOrder/batchDownShelf': {
ufo: true,
api: 'ufo.sellerOrder.batchDownShelf',
params: {
product_id: {type: Number},
storage_id: {type: Number},
old_price: {type: Number},
num: {type: Number}
}
}
};