Authored by 毕凯

Merge branch 'feature/detail-yohonow' into 'master'

yohonow 商品详情页修改



See merge request !1363
... ... @@ -49,7 +49,7 @@ const index = (req, res) => {
},
navBtn: false
}),
isWechat: req.yoho.isWechat || req.yoho.isMarsApp // 默认判断微信,mars下同微信
isWechat: req.yoho.isWechat || req.yoho.isMarsApp || req.yoho.isNowApp // 默认判断微信,mars下同微信
}));
};
... ...
... ... @@ -104,6 +104,7 @@ setTimeout(() => {
if (data.studentPrice) {
data.studentPrice = Math.round(data.studentPrice.toString().replace('¥', ''));
}
$('#placeholder-pricedata').replaceWith(priceDataHbs(data));
$('#placeholder-infodata').replaceWith(infoDataHbs(data));
... ...
... ... @@ -213,3 +213,15 @@
border-bottom: 25PX solid #323232;
border-radius: 0 0 25PX;
}
.is-now-app {
.op-row {
.back-to-top {
display: none;
}
.float-top {
display: none;
}
}
}
... ...
... ... @@ -1296,3 +1296,11 @@ iframe {
}
}
}
.is-now-app {
.cart-bar {
.fav {
visibility: hidden;
}
}
}
... ...
... ... @@ -715,3 +715,9 @@
display: none;
}
}
.is-now-app {
.not-collect {
display: none;
}
}
... ...
... ... @@ -82,3 +82,9 @@
display: none;
}
}
.is-now-app {
.not-collect {
display: none;
}
}
... ...