Authored by 姜枫

handle merge

... ... @@ -16,14 +16,14 @@ const index = (req, res, next) => {
let channel = req.cookies._Channel || 'men';
let contentCode = '';
if(channel === 'women') {
if (channel === 'women') {
contentCode = '527079e6c46d0f125eb46b835968971b';
} else if (channel === 'lifestyle'){
} else if (channel === 'lifestyle') {
contentCode = '94b5ed607b6d565ffc29c2c04be121dc';
} else {
contentCode = '81886aaa5e82e3741bc1ba1e04ec7706';
}
let appType = 1;
brand.getListData(contentCode, channel, appType).then((result) => {
... ...
... ... @@ -27,7 +27,7 @@ const _processListData = (list) => {
let listKey = [];
_.forEach(list.data.allList, function(value, index) {
_.forEach(value, function(data) {
data.brandDomain = `${config.siteUrl}/product/shop/${data.brandDomain}`;
});
... ... @@ -35,20 +35,20 @@ const _processListData = (list) => {
if (index === '0~9') {
index = '0-9';
} else {
listKey.push(index)
listKey.push(index);
}
});
listKey.sort();
listKey.push('0-9');
_.forEach(listKey, function(key) {
listData.push({
key: key,
brands: list.data.allList[key]
});
});
});
return listData;
};
... ...
... ... @@ -73,6 +73,7 @@ const _processListData = (list) => {
});
listData.tabs = list.list.artList;
// console.log(listData)
return listData;
... ... @@ -276,7 +277,8 @@ const _getRelatedData = () => {
if (result && result.code === 200) {
_.forEach(result.data.product_list, function(data) {
console.log(data.product_name)
console.log(data.product_name);
// productList.push({
// name: data.product_name,
// price: data.sales_price,
... ... @@ -285,7 +287,7 @@ const _getRelatedData = () => {
// });
});
console.log(productList)
console.log(productList);
return productList;
} else {
logger.error('推荐商品 cood 不是 200');
... ... @@ -335,11 +337,13 @@ const _processContentData = (list) => {
_.forEach(value.goods.data, function(data) {
idList += data.id + ',';
// idList = '51152761';
formatData.push(data);
});
}
//console.log(idList)
// console.log(idList)
if (value.goodsGroup) {
... ... @@ -354,10 +358,11 @@ const _processContentData = (list) => {
// });
}
});
// console.log(idList)
_getRelatedData().then((result) => {
//console.log(result)
// console.log(result)
_.forEach(formatData, function(data, index) {
// console.log(formatData)
... ...