index.js
4.21 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
let apiUrl = {
brand: '/platform/getSellerBrandInfo',
sort: '/platform/getSellerSortInfo',
color: '/platform/querySellerProductColors',
size: '/platform/querySortSize',
addProduct: '/platform/addProduct',
params: '/platform/queryProductParamBySortId',
attr: '/platform/selectAttributes',
material: '/platform/querySellerProductMaterial',
updateNetInfo: '/platform/updateSellerProductNetSaleInfo',
updateProduct: '/platform/updateProduct',
getProduct: '/platform/getProduct'
};
const request = require('axios');
/**
* 获得店铺关联品牌
*/
function getBrand() {
return request.get(apiUrl.brand).then((result) => result.data);
}
/**
* 根据品牌获得品类信息
* @param brandId
* @param level 可选参数:1, 2, 3
* @param sortId 父级sortId
*/
function getSort(brandId, level, sortId) {
let opts = {
brandId: brandId,
level: level
};
if (sortId) {
Object.assign(opts, {sortId});
}
return request.get(apiUrl.sort, {
params: opts
}).then((result) => result.data);
}
/**
* 获得品牌所支持的所有颜色
*/
function getColor() {
return request.get(apiUrl.color).then((result) => result.data);
}
/**
* 获得品类下所支持的尺码
* @param smallSortId
*/
function getSize(smallSortId) {
return request.get(apiUrl.size, {
params: {
sortId: smallSortId
}
}).then(result => result.data);
}
/**
* 获得品类支持的商品相关参数
* @param sortId
*/
function getProductParams(sortId) {
return request.get(apiUrl.params, {
params: {
sortId
}
}).then(result => result.data);
}
/**
* 获得品类的属性
* @param sorId
*/
function getProductAttribute(sortId) {
const saleType = 2;
const displayPosition = 3;
return request.get(apiUrl.attr, {
params: {
categoryId: sortId,
saleType,
displayPosition
}
}).then(result => result.data);
}
/**
* 获得商品风格
* @param sortId
*/
function getProductStyle(sortId) {
const saleType = 2;
const displayPosition = 2;
return request.get(apiUrl.attr, {
params: {
categoryId: sortId,
saleType,
displayPosition
}
}).then(result => result.data);
}
/**
* 获得品类下的所有材质
* @param sortId 第一级sort
*/
function getMaterial(maxSortId) {
return request.get(apiUrl.material, {
params: {
maxSortId: maxSortId
}
}).then(result => result.data);
}
/**
* 获得所有属性
* @param smallSortId
* @param maxSortId
*/
function addModelAttr(attr) {
attr.model = attr.inputType === 'checkbox' ? [] : '';
return attr;
}
function getAllAttr(smallSortId, maxSortId) {
return Promise.all([
getProductParams(smallSortId).then(r => r.data).then(r => r.map(addModelAttr)),
getProductAttribute(smallSortId).then(r => r.data).then(r => r.map(addModelAttr)),
getProductStyle(smallSortId).then(r => r.data).then(r => r.map(addModelAttr)),
getMaterial(maxSortId).then(r => r.data).then(r => addModelAttr(r)),
]);
}
/**
* 更新商品网销信息
* @param info
*/
function updateNetInfo(info) {
return request.post(apiUrl.updateNetInfo, info)
.then(result => result.data);
}
/**
* 保存商品基本信息
* @param product
*/
function saveBaseProductInfo(product) {
return request.post(apiUrl.addProduct, product)
.then(result => result.data);
}
/**
* 查询商品所以有信息,包括网销信息
* @param skn
*/
function getProductAllInfo(skn) {
return request.get(apiUrl.getProduct, {
params: {
productSkn: skn
}
}).then(result => result.data);
}
/**
* 更新商品信息,包括基础信息和网销信息
* @param product
*/
function updateProductAllInfo(product) {
return request.post(apiUrl.updateProduct, product)
.then(result => result.data);
}
export default {
getBrand,
getSort,
getColor,
getSize,
getProductParams,
getProductAttribute,
getMaterial,
getProductStyle,
getAllAttr,
updateNetInfo,
saveBaseProductInfo,
getProductAllInfo,
updateProductAllInfo
};