Authored by 毕凯

Merge branch 'release/5.7.1' of git.yoho.cn:fe/yohobuywap-node into release/5.7.1

... ... @@ -15,6 +15,10 @@ let configFile = `
{
"appID": "EX33S4LRW7.com.yoho.buy",
"paths": [ "*" ]
},
{
"appID": "FP8T8KM2NE.com.yoho.buy.c3",
"paths": [ "*" ]
}
]
}
... ...
... ... @@ -16,14 +16,16 @@
{{/within}}
{{/if}}
</a>
{{#ifor isGood four}}
{{#unless parent.noShowProductInfo}}
<div class="item-info">
<div class="text">{{text}}</div>
<div class="name">{{name}}</div>
<div class="price">{{salesPrice}}</div>
</div>
{{/unless}}
{{/ifor}}
{{#if showProductInfo}}
{{#ifor isGood four}}
{{#unless parent.noShowProductInfo}}
<div class="item-info">
<div class="text">{{text}}</div>
<div class="name">{{name}}</div>
<div class="price">{{salesPrice}}</div>
</div>
{{/unless}}
{{/ifor}}
{{/if}}
</div>
... ...
... ... @@ -2,7 +2,7 @@
* @Author: Targaryen
* @Date: 2017-03-23 11:02:31
* @Last Modified by: Targaryen
* @Last Modified time: 2017-05-23 15:33:28
* @Last Modified time: 2017-05-26 16:42:29
*/
/* 红人店铺数据处理 */
... ... @@ -57,7 +57,7 @@ const _picsHandle = (moduleData) => {
let pics = [];
_.forEach(_.get(moduleData, 'data', []), value => {
let showProductInfo = false;
let showProductInfo = true;
if (_.has(value, 'showProductInfo')) {
showProductInfo = value.showProductInfo;
... ...