...
|
...
|
@@ -257,7 +257,8 @@ const processArticleDetail = (articleContent, isApp, gender, isWeixin, isqq, isW |
|
|
_.forEach(tagListGlobal, tagGlobal => {
|
|
|
tagList.push(Object.assign(tagGlobal, {
|
|
|
href: '//m.yohobuy.com/product/global/' + tagGlobal.product_skn + '.html',
|
|
|
isApp: isApp
|
|
|
isApp: isApp,
|
|
|
noCart: true
|
|
|
}));
|
|
|
});
|
|
|
}
|
...
|
...
|
@@ -267,7 +268,8 @@ const processArticleDetail = (articleContent, isApp, gender, isWeixin, isqq, isW |
|
|
_.forEach(tagListLimit, tagLimit => {
|
|
|
tagList.push(Object.assign(tagLimit, {
|
|
|
href: '//m.yohobuy.com/product/' + tagLimit.product_skn + '.html',
|
|
|
isApp: isApp
|
|
|
isApp: isApp,
|
|
|
noCart: true
|
|
|
}));
|
|
|
});
|
|
|
}
|
...
|
...
|
|