...
|
...
|
@@ -62,6 +62,18 @@ const newDetail = { |
|
|
let description = result.goodsName + ' 有货网仅售' + result.goodsPrice.currentPrice + '元,购买' +
|
|
|
result.brandName + result.sortName + ',了解' + result.brandName + result.sortName + '商品信息就上有货网!';
|
|
|
|
|
|
let miniAppParams = {
|
|
|
productSkn: result.productSkn,
|
|
|
union_type: req.query.union_type || req.cookies.unionTypeYas || '',
|
|
|
};
|
|
|
let miniQrType: 7;
|
|
|
|
|
|
// 拼团展示拼团小程序码
|
|
|
if (req.query.type === 'groupPurchase') {
|
|
|
miniQrType = 17;
|
|
|
miniAppParams.activityId = req.query.activity_id || '';
|
|
|
}
|
|
|
|
|
|
res.render('detail/new/detail', {
|
|
|
pageHeader: headerData,
|
|
|
result: result,
|
...
|
...
|
@@ -79,11 +91,8 @@ const newDetail = { |
|
|
isMarsApp: req.yoho.isMarsApp, // 判断mars
|
|
|
miniPath: helpers.urlFormat('/api/wechat/miniapp.jpg', {
|
|
|
miniapp_type: 0,
|
|
|
param: JSON.stringify({
|
|
|
productSkn: result.productSkn,
|
|
|
union_type: req.query.union_type || req.cookies.unionTypeYas || '',
|
|
|
}),
|
|
|
miniQrType: 7,
|
|
|
param: JSON.stringify(miniAppParams),
|
|
|
miniQrType: miniQrType,
|
|
|
isOpen: _.get(req.app, 'locals.wap.wechat.miniPathOpen', false)
|
|
|
}), // param:品牌ID, name:品牌名称, miniQrType 7:商品 2 品牌,miniapp_type 0:有货,1:新与力,union_type商品详情页和默认页加
|
|
|
miphtml: `https://m.yohobuy.com/mip/product/${result.productSkn}.html`,
|
...
|
...
|
|