product-api-map.js
4.22 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
module.exports = {
// 商品详情
'/api/ufo/product': {
ufo: true,
auth: false,
api: 'ufo.product.data3',
params: {
product_id: {type: Number}, // 商品id
},
},
// 查询是否收藏
'/api/ufo/product/fav': {
ufo: true,
auth: true,
api: 'ufo.user.isFavorite',
params: {
productId: {type: Number}, // 商品id
},
},
// 收藏
'/api/ufo/product/favorite/add': {
ufo: true,
auth: true,
api: 'ufo.user.favoriteAdd',
params: {
productId: {type: Number}, // 商品id
},
},
// 取消收藏
'/api/ufo/product/favorite/cancel': {
ufo: true,
auth: true,
api: 'ufo.user.favoriteCancel',
params: {
productId: {type: Number}, // 商品id
},
},
// 资源位
'/api/ufo/product/resource': {
ufo: true,
auth: false,
api: 'ufo.resource.get',
params: {
content_code: {type: String},
},
},
// 对应商品的活动
'/api/ufo/product/activity': {
ufo: true,
auth: false,
api: 'ufo.promotion.activityListForProduct',
params: {
product_id: {type: Number}, // 商品id
},
},
// 对应商品的券
'/api/ufo/product/coupon': {
ufo: true,
auth: false,
path: '/ufo-gateway/couponCenter',
api: 'ufo.couponsInPrdDetail.list',
params: {
productId: {type: Number}, // 商品id
limit: { type: Number },
page: { type: Number },
},
},
// 商品详情页couponTopList
'/api/ufo/product/couponTopList': {
ufo: true,
auth: false,
path: '/ufo-gateway/couponCenter',
api: 'ufo.couponTopListOfPrdDetail.list',
params: {
productId: {type: Number}, // 商品id
},
},
// TOP3
'/api/ufo/product/top': {
ufo: true,
api: 'ufo.product.data.search.recommendBySeriesBrand',
params: {
product_id: {type: Number}, // 商品id
},
},
// 建议尺码
'/api/ufo/product/addsize': {
ufo: true,
auth: true,
path: '/ufo-gateway/ufoLive',
api: 'ufo.product.addSize',
params: {
product_id: {type: Number}, // 商品id
goods_id: {type: Number}, // 商品id
size_ids: {type: String}, // 建议尺码id
},
},
// 推荐
'/api/ufo/product/recommend': {
ufo: true,
api: 'ufo.product.data.search.recommend',
params: {
product_id: {type: Number}, // 商品id
},
},
// 入驻状态 用户入驻状态,这里放入product命名下,防止冲突
'/api/ufo/product/user/entrystatus': {
ufo: true,
auth: true,
api: 'ufo.sellerOrder.entryStatus',
params: {},
},
// 查询alipay账号
'/api/ufo/product/user/alipayaccountquery': {
ufo: true,
auth: true,
api: 'ufo.user.aliPayAccountQuery',
},
'/api/ufo/product/order/count': {
ufo: true,
auth: true,
api: 'ufo.order.getAllCnt',
params: {
tabType: {type: String} // sell|buy
},
},
// 下单
'/api/ufo/product/order/payment': {
ufo: true,
auth: true,
api: 'ufo.order.payment',
path: 'shopping',
params: {
skup: {type: Number},
},
},
// 商品限制信息查询
'/api/ufo/product/limit/info': {
ufo: true,
auth: true,
api: 'ufo.product.limitInfo',
params: {
product_id: {type: Number}, // 商品id
},
},
// 商品详情页展示的社区图片内容
'/api/grass/product/article': {
ufo: false,
auth: false,
api: 'app.grass.simpleProductArticle',
params: {
productSkn: {type: Number},
productType: {type: Number}, // 1.有货商品 2.ufo商品
fromXianYu: {type: String}
}
},
// 通过articleId获取文章下拥有的图片列表(articleId多个用逗号隔开)
'/api/grass/product/articleImages': {
ufo: false,
auth: false,
api: 'app.grass.productArticleListOnlyImage',
params: {
articleIds: {type: String}
}
},
// 获取详情页的尺码图片
'/api/ufo/product/sizeImage': {
ufo: true,
auth: false,
api: 'ufo.product.sizeImage',
params: {
product_id: {type: Number},
brand_id: {type: Number}
}
},
// 获取sku配置的视频连接
'/api/ufo/product/vedioImage': {
ufo: true,
auth: false,
api: 'ufo.product.vedioImage',
params: {
product_id: {type: Number},
}
}
};