Authored by hongweigao

搜索页加载埋点、列表点击埋点

... ... @@ -91,11 +91,11 @@ function givePoint(op, parameter) {
op: op,
param: JSON.stringify(parameter)
}, true);
};
}
function getFilterValue() {
return _getCommonFilterValue() + _getOtherFilterValue();
};
}
exports.givePoint = givePoint;
... ...
... ... @@ -9,8 +9,8 @@ var lazyLoad = require('yoho-jquery-lazyload');
var product = require('./index/product'),
qs = window.queryString;
var product = require('./index/product');
var qs = window.queryString;
var $footPage = $('.foot-pager1').data('total'),
$productIdArr = [],
... ... @@ -65,7 +65,7 @@ $(function() {
proId = $this.find('.product-id').html(),
aIndex = $this.attr('activeIndex'),
pageNum = qs.pager || 1,
limit = qs.limit || 60,
limit = qs.limit || 60,
proNum = (parseInt(pageNum, 10) - 1) * limit + parseInt(aIndex, 10);
// 点击搜索列表商品埋点
... ...