item-api.js
2.63 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
/**
* 商品基本信息
* @author: yyq<yanqing.yang@yoho.cn>
* @date: 2016/7/11
*/
'use strict';
const api = global.yoho.API;
/**
* 获取商品基础数据API
* @function getProductBaseAsync
* @param { number } productId 商品id
* @param { number } uid 用户uid
* @param { number } skn 商品skn
* @return { Object } 商品信息
*/
const getProductBaseAsync = (productId, uid, skn) => {
let params = {
method: 'h5.product.data',
productId: productId
};
if (uid) {
params.uid = uid;
}
if (skn) {
params.product_skn = skn;
}
return api.get('', params, { cache: true });
};
/**
* 获取用户商品收藏状态API
* @function getUserIsFav
* @param { number } uid 用户uid
* @param { number } productId 商品id
* @return { Object } 收藏状态
*/
const getUserIsFav = (uid, productId) => {
return api.get('', {
method: 'app.favorite.isFavorite',
id: productId,
uid: uid,
type: 'product'
}, { cache: true });
};
/**
* 获取商品尺码信息API
* @function getsizeInfoAsync
* @param { number } skn 商品skn
* @return { Object } 商品尺码信息
*/
const getsizeInfoAsync = (skn) => {
return api.get('', {
method: 'h5.product.intro',
productskn: skn
}, { cache: true });
};
/**
* 获取商品材料信息API
* @function getComfortAsync
* @param { number } productId 商品id
* @return { Object } 商品材料信息
*/
const getComfortAsync = productId => {
return api.get('', {
method: 'web.productComfort.data',
product_id: productId
}, {
cache: true,
code: 200
});
};
/**
* 获取商品模特试穿信息API
* @function getProductBaseAsync
* @param { number } skn 商品skn
* @return { Object } 商品模特试穿信息
*/
const getModelTryAsync = skn => {
return api.get('', {
method: 'web.productModelTry.data',
product_skn: skn
}, {
cache: true,
code: 200
});
};
/**
* 获取品牌Banner API
* @function getBrandBannerAsync
* @param { number } brandId 品牌id
* @return { Object } banner信息
*/
const getBrandBannerAsync = brandId => {
return api.get('', {
method: 'web.brand.banner',
brand_id: brandId
}, {
cache: true,
code: 200
});
};
module.exports = {
getProductBaseAsync, // 获取商品基本信息
getUserIsFav, // 获取商品用户收藏信息
getsizeInfoAsync, // 获取商品尺码信息
getComfortAsync, // 获取商品材质信息
getModelTryAsync, // 获取商品模特试穿信息
getBrandBannerAsync // 获取品牌Banner信息
};