Authored by 郝肖肖

个人中心-为你优选

... ... @@ -49,11 +49,14 @@ module.exports = function(specificGender) {
gender = (specificGender === 'boys' || $('.mobile-wrap').hasClass('boys-wrap')) ?
'1,3&rec_pos=100009' : '2,3&rec_pos=100009',
url = '/product/recom/maylike?gender=' + gender;
} else if (logisticType) { //物流页面
RECPOSE = 110009;
} else if (logisticType) { //物流页面
gender = (specificGender === 'boys' || $('.mobile-wrap').hasClass('boys-wrap')) ?
'1,3&rec_pos=100006' : '2,3&rec_pos=100006',
url = '/product/recom/maylike?gender=' + gender;
RECPOSE = 110006;
} else {
gender = (specificGender === 'boys' || $('.mobile-wrap').hasClass('boys-wrap')) ?
'1,3&rec_pos=100001' : '2,3&rec_pos=100002',
... ... @@ -67,9 +70,9 @@ module.exports = function(specificGender) {
//首页男生和女生,推荐位ID,埋点
if (window.location.pathname === '/boys') {
RECPOSE = '110001';
RECPOSE = 110001;
} else if (window.location.pathname === '/girls') {
RECPOSE = '110002';
RECPOSE = 110002;
}
$curNav = $navList.children('.focus');
... ... @@ -232,6 +235,6 @@ module.exports = function(specificGender) {
'ACTION_ID': 1,
'page_num': Math.ceil(index / pageNum)
});
return false;
return true;
});
};
... ...
... ... @@ -18,23 +18,23 @@ $.get('/product/recommend-for-you/cart').then(function(html) {
lazyLoad($('img.lazy'));
//为您优选埋点 http://redmine.yoho.cn/issues/10116
$('.recommend-for-you .good-info').each(function() {
$recommendForYou.find('.good-info').each(function() {
PRDID.push($(this).data('id'));
});
window.givePoint({
'REC_POSE': 110003,
'REC_POSE': 10003,
'PRD_ID': PRDID.join(','),
'PRD_NUM': $('.recommend-for-you .good-info').length,
'ACTION_ID': 0,
'page_num': 1
});
$('.recommend-for-you .good-info').on('click', 'a', function() {
$recommendForYou.find('.good-info').on('click', 'a', function() {
var index = $(this).closest('.good-info').index() + 1;
window.givePoint({
'REC_POSE': 110003,
'REC_POSE': 10003,
'PRD_ID': $(this).closest('.good-info').data('id'),
'PRD_NUM': index,
'ACTION_ID': 1,
... ...
... ... @@ -12,9 +12,38 @@ var Swiper = require('yoho.iswiper'),
var $recommendForYou = $('.recommend-for-you');
$.get('/product/recommend-for-you/userCenter').then(function(html) {
var PRDID = [];
$recommendForYou.html(html).show();
lazyLoad($('img.lazy'));
//为您优选埋点 http://redmine.yoho.cn/issues/10116
$recommendForYou.find('.good-info').each(function() {
PRDID.push($(this).data('id'));
});
window.givePoint({
'REC_POSE': 110004,
'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() {
var index = $(this).closest('.good-info').index() + 1;
window.givePoint({
'REC_POSE': 110004,
'PRD_ID': $(this).closest('.good-info').data('id'),
'PRD_NUM': index,
'ACTION_ID': 1,
'page_num': 1
});
return true;
});
}).fail(function() {
$recommendForYou.hide();
});
\ No newline at end of file
... ...