Authored by lijing

增加埋点

... ... @@ -40,3 +40,18 @@ $('.yoho-page').on('touchstart', '.list-item, .type-item, .order-title', functio
}).on('touchend touchcancel', '.list-item, .type-item, .order-title', function() {
$(this).removeClass('highlight');
});
// 埋点
$('.res-c').on('click', 'a', function() {
window._yas.sendCustomInfo({
// op: 'YB_CHOOSE_FOR_YOU_Y',
// appop: isAppOp ? 'YB_CHOOSE_FOR_YOU' : '', // app内打开wap的埋点场合
// param: JSON.stringify(parameter),
// REC_POSE: RECPOSE,
// PRD_ID: $(this).closest('.good-info').data('id'),
// PRD_NUM: index % pageNum === 0 ? pageNum : index % pageNum,
// ACTION_ID: 1,
// PAGE_NUM: Math.ceil(index / pageNum)
}, true);
});
... ...