Authored by 郭成尧

Merge branch 'feature/appalert2' into 'release/5.5.1'

H5 唤起 APP 店铺相关规则调整



See merge request !413
... ... @@ -240,6 +240,15 @@ const shop = {
baseShop.baseShopHome.banner += '?imageMogr2/auto-orient/strip/thumbnail/x150/crop/640x150';
}
}
let appPath = 'yohobuy://yohobuy.com/goapp?openby:yohobuy={"action":"go.shop","params":{"shop_template_type":"1","shop_id":"' +
shopId + '","shop_name":"' + baseShop.shopName + '"}}';
if (shopInfoResult.is_red_shop === 1) {
appPath = 'yohobuy://yohobuy.com/goapp?openby:yohobuy={"action":"go.shop","params":{"shop_template_type":"1","is_red_shop":"1","shop_id":"' +
shopId + '","shop_name":"' + baseShop.shopName + '"}}';
}
res.render('newshop/shop-base', {
module: 'product',
page: 'shop.base',
... ... @@ -257,8 +266,7 @@ const shop = {
shopId: shopId,
shopPage: true,
_noLazy: true,
appPath: 'yohobuy://yohobuy.com/goapp?openby:yohobuy={"action":"go.shop","params":{"shop_template_type":"1","shop_id":"' +
shopId + '","shop_name":"' + baseShop.shopName + '"}}',
appPath: appPath,
localCss: true
});
});
... ... @@ -295,7 +303,7 @@ const shop = {
description: result.seoTitle + '|Yoho!Buy有货' + result.seoTitle + '潮流服饰官方授权店!100%品牌正品保证,支持货到付款。',
shopId: shopId,
shopPage: true,
appPath: 'yohobuy://yohobuy.com/goapp?openby:yohobuy={"action":"go.shop","params":{"shop_template_type":"1","shop_id":"' +
appPath: 'yohobuy://yohobuy.com/goapp?openby:yohobuy={"action":"go.shop","params":{"shop_template_type":"2","shop_id":"' +
shopId + '","shop_name":"' + result.seoTitle + '"}}',
localCss: true
});
... ...