Authored by 陈轩

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

... ... @@ -21,6 +21,7 @@ const getPageInfo = (pageInfo) => {
dest.oldUserCouponPic = pageInfo.data.oldUserCouponPic;
dest.mobile = pageInfo.data.mobile;
dest.wechatShare = true;
dest.secondScreenPic = pageInfo.data.secondScreenPic;
// 强制活动开始,活动上线产品要求这样设置
pageInfo.data.flag = 1;
... ...
... ... @@ -2,6 +2,9 @@
<div class="receive-coupon-page">
<div class="bg-contain">
<img src="{{image bgImg 640 1136}}">
{{#if secondScreenPic}}
<img src="{{image secondScreenPic}}">
{{/if}}
</div>
<p class="hidden" id="orderCode">{{ordercode}}</p>
<p class="hidden" id="oldUserCouponPic">{{image oldUserCouponPic}}</p>
... ...
... ... @@ -91,7 +91,9 @@ const _searchGoods = (params) => {
delete params.filter_poolId;
}
if (params.brand) {
if (params.shop_id) {
method = 'app.search.li';
} else if (params.brand) {
method = 'app.search.brand';
}
... ...