detail-product-api.js
3.67 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
/**
* Created by TaoHuang on 2016/6/14.
*/
'use strict';
const config = global.yoho.config;
const redis = global.yoho.redis;
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 商品的 banner
*/
getProductBannerAsync(pid) {
return this.get({data: {
method: 'web.productBanner.data',
product_id: pid
}, params: {
cache: config.apiCache
}});
}
/**
* 商品尺寸
*/
sizeInfoAsync(skn) {
return this.get({data: {
method: 'h5.product.intro',
productskn: skn
}, params: {
cache: config.apiCache
}});
}
/**
* 特殊商品退换货
*/
isSupportReturnedSale(skn) {
return this.get({data: {
method: 'web.product.refundExchange',
product_skn: skn
}, params: {
cache: config.apiCache
}});
}
/**
* 商品舒适度
*/
getProductComfortAsync(pid) {
return this.get({data: {
method: 'web.productComfort.data',
product_id: pid
}, params: {
cache: config.apiCache
}});
}
/**
* 模特试穿
*/
getProductModelTryAsync(skn) {
return this.get({data: {
method: 'web.productModelTry.data',
product_skn: skn
}, params: {
cache: config.apiCache
}});
}
/**
* 获得产品信息
*/
getProductAsync(id, uid, isStudents, vipLevel) {
let data = {
method: 'app.product.data'
};
if (id.skn) {
data.product_skn = id.skn;
}
if (id.pid) {
data.product_id = id.pid;
}
if (uid) {
data.uid = uid;
}
if (isStudents) {
data.is_student = isStudents;
}
if (vipLevel) {
data.current_vip_level = vipLevel;
}
return this.get({data, params: {
cache: config.apiCache
}});
}
/**
* 促销信息
*/
getPromotionAsync(skn) {
let data = {
method: 'app.product.promotion',
product_skn: skn
};
return this.get({data, params: {
cache: config.apiCache
}});
}
/**
* 限购商品
*/
getLimitedProductStatusAsync(code, uid, skn) {
let data = {
method: 'app.limitProduct.productStatus',
limitProductCode: code
};
if (uid) {
data.uid = uid;
}
if (skn) {
data.product_skn = skn;
}
return this.get({data, params: {
cache: config.apiCache
}});
}
/**
* 店铺推荐
*/
getShopRecommendAsync(skn, page, limit) {
return this.get({
method: 'web.product.shopRecommend',
product_skn: skn,
page: page || 1,
limit: limit || 20
});
}
/**
* 套餐和量贩
*/
getBundleAsync(skn) {
return this.get({data: {
method: 'app.query.bundleSkn',
product_skn: skn
}});
}
/**
* 找相似
*/
getLikeAsync(skn, limit) {
return this.get({data: {
method: 'app.search.findLike',
limit: limit || 10,
product_skn: skn
}});
}
// 根据small_sort从redis获取分类下的关键词
getRecommendKeywords(smallSort) {
return redis.all([['get', `golobal:yoho:seo:keywords:sortId:${smallSort}`]]).then(res => {
return res[0];
});
}
};