Authored by zhangxiaoru

新品到着店铺类型

... ... @@ -13,10 +13,14 @@
{{else if _isHotShop}}
{{#if this.reShop}}
{{#with this.data}}
{{> hot-shop}}
{{/with}}
{{/if}}
{{else if _isHotSearchTerm}}
{{#with this.data}}
... ...
... ... @@ -127,6 +127,11 @@ exports.processProductList = (list, options) => {
if (extraAttr) {
product[extraAttr] = true;
if (extraAttr === '_isHotShop' && parseInt(product.data.show_type, 10) === 1) {
product.reShop = true;
}
pruductList.push(product);
}
... ...