Authored by lijing

weiniyouxuan

... ... @@ -13,7 +13,9 @@ var $recommendForYou = $('.recommend-for-you');
$.get('/product/recommend-for-you/userCenter').then(function(html) {
var PRDID = [];
$recommendForYou.html(html).show();
$recommendForYou.html(html);
lazyLoad($('img.lazy'));
// 为您优选埋点 http://redmine.yoho.cn/issues/10116
... ... @@ -21,6 +23,16 @@ $.get('/product/recommend-for-you/userCenter').then(function(html) {
PRDID.push($(this).data('id'));
});
let $recommendSonLen = $recommendForYou.find('.good-info').length;
if ($recommendSonLen === 0) {
$recommendForYou.hide();
} else {
$recommendForYou.show();
}
window.givePoint({
'REC_POSE': 110004,
'PRD_ID': PRDID.join(','),
... ...