recommend-for-you-cart.js
1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* 为您优选
* @author: bikai<kai.bi@yoho.cn>
* @date: 2015/11/16
*/
let $ = require('yoho-jquery'),
lazyLoad = require('yoho-jquery-lazyload');
let $recommendForYou = $('.recommend-for-you');
$.get('/product/recommend-for-you/cart').then(function(html) {
let PRDID = [];
$recommendForYou.html(html);
if ($recommendForYou.find('.good-info').length) {
$recommendForYou.show();
}
lazyLoad($('img.lazy'));
// 为您优选埋点 http://redmine.yoho.cn/issues/10116
$recommendForYou.find('.good-info').each(function() {
PRDID.push($(this).data('id'));
});
window.givePoint && window.givePoint({
REC_POSE: 110003,
PRD_ID: PRDID.join(','),
PRD_NUM: $('.recommend-for-you .good-info').length,
ACTION_ID: 0,
page_num: 1
});
$recommendForYou.find('.good-info').on('click', 'a', function() {
let index = $(this).closest('.good-info').index() + 1;
window.givePoint && window.givePoint({
REC_POSE: 110003,
PRD_ID: $(this).closest('.good-info').data('id'),
PRD_NUM: index,
ACTION_ID: 1,
page_num: 1
});
return true;
});
}).fail(function() {
$recommendForYou.hide();
});