detail-api.js
1.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
'use strict';
const library = '../../../library';
const API = require(`${library}/api`).API;
const sign = require(`${library}/sign`);
const api = new API();
module.exports.getProductBannerAsync = function(pid) {
return api.get('', sign.apiSign({
method: 'web.productBanner.data',
product_id: pid
})).catch(err => console.log(err));
};
module.exports.sizeInfoAsync = function(skn) {
return api.get('', sign.apiSign({
method: 'h5.product.intro',
productskn: skn
})).catch(err => console.log(err));
};
module.exports.getProductComfortAsync = function(pid) {
return api.get('', sign.apiSign({
method: 'web.productComfort.data',
product_id: pid
})).catch(err => console.log(err));
};
module.exports.getProductModelCardAsync = function(pid) {
return api.get('', sign.apiSign({
method: 'web.productModelcard.list',
product_id: pid
})).catch(err => console.log(err));
};
/**
*
* @param skn
* @param isUrl
* @returns {type[]}
*/
module.exports.getProductModelTryAsync = function(skn, isUrl) {
isUrl;
return api.get('', sign.apiSign({
method: 'web.productModelTry.data',
product_skn: skn
})).catch(err => console.log(err));
};