...
|
...
|
@@ -55,10 +55,9 @@ module.exports = { |
|
|
cache: true
|
|
|
});
|
|
|
}
|
|
|
if (data.code === 200) {
|
|
|
data = data.data;
|
|
|
}
|
|
|
if (data.floors) {
|
|
|
|
|
|
data = data.data;
|
|
|
if (data && data.floors) {
|
|
|
data.floors.forEach(function(f) {
|
|
|
if (f.component && f.component[0] && f.component[0].type === 'productGroup' && f.component[0].defaultSkns) {
|
|
|
sknsArr.push(_getProductBySkns(f.component[0]));
|
...
|
...
|
@@ -69,6 +68,7 @@ module.exports = { |
|
|
if (sknsArr.length) {
|
|
|
yield Promise.all(sknsArr);
|
|
|
}
|
|
|
|
|
|
return data;
|
|
|
})();
|
|
|
}
|
...
|
...
|
|