...
|
...
|
@@ -22,7 +22,9 @@ const request = require('axios'); |
|
|
* 获得店铺关联品牌
|
|
|
*/
|
|
|
function getBrand() {
|
|
|
return request.get(apiUrl.brand).then((result) => result.data);
|
|
|
return request.get(apiUrl.brand, {
|
|
|
cache: true
|
|
|
}).then((result) => result.data);
|
|
|
}
|
|
|
|
|
|
/**
|
...
|
...
|
@@ -50,7 +52,9 @@ function getSort(brandId, level, sortId) { |
|
|
* 获得品牌所支持的所有颜色
|
|
|
*/
|
|
|
function getColor() {
|
|
|
return request.get(apiUrl.color).then((result) => result.data);
|
|
|
return request.get(apiUrl.color, {
|
|
|
cache: true
|
|
|
}).then((result) => result.data);
|
|
|
}
|
|
|
|
|
|
/**
|
...
|
...
|
@@ -61,7 +65,8 @@ function getSize(smallSortId) { |
|
|
return request.get(apiUrl.size, {
|
|
|
params: {
|
|
|
sortId: smallSortId
|
|
|
}
|
|
|
},
|
|
|
cache: true
|
|
|
}).then(result => result.data);
|
|
|
}
|
|
|
|
...
|
...
|
@@ -73,7 +78,8 @@ function getProductParams(sortId) { |
|
|
return request.get(apiUrl.params, {
|
|
|
params: {
|
|
|
sortId
|
|
|
}
|
|
|
},
|
|
|
cache: true
|
|
|
}).then(result => result.data);
|
|
|
}
|
|
|
|
...
|
...
|
@@ -90,7 +96,8 @@ function getProductAttribute(sortId) { |
|
|
categoryId: sortId,
|
|
|
saleType,
|
|
|
displayPosition
|
|
|
}
|
|
|
},
|
|
|
cache: true
|
|
|
}).then(result => result.data);
|
|
|
}
|
|
|
|
...
|
...
|
@@ -107,7 +114,8 @@ function getProductStyle(sortId) { |
|
|
categoryId: sortId,
|
|
|
saleType,
|
|
|
displayPosition
|
|
|
}
|
|
|
},
|
|
|
cache: true
|
|
|
}).then(result => result.data);
|
|
|
}
|
|
|
|
...
|
...
|
@@ -119,7 +127,8 @@ function getMaterial(maxSortId) { |
|
|
return request.get(apiUrl.material, {
|
|
|
params: {
|
|
|
maxSortId: maxSortId
|
|
|
}
|
|
|
},
|
|
|
cache: true
|
|
|
}).then(result => result.data);
|
|
|
}
|
|
|
|
...
|
...
|
|