Authored by 郝肖肖

处理商品埋点的时候PRD_ID数量太大,引起其它埋点问题

... ... @@ -59,14 +59,16 @@ plusstar = {
window._yas.sendCustomInfo({
op: 'YB_FASHION_TAB_C',
param: JSON.stringify($.extend(speckParamApp, {
TAB_ID: $liDom.index() + 1
TAB_ID: $liDom.index() + 1,
PRD_ID: ''
}))
}, true);
window._yas.sendCustomInfo({
op: 'YB_FASHION_HOME_L',
param: JSON.stringify($.extend(speckParamApp, {
TAB_ID: that.ParentLiDom.index() + 1
TAB_ID: that.ParentLiDom.index() + 1,
PRD_ID: ''
}))
}, true);
}
... ... @@ -121,6 +123,7 @@ plusstar = {
TAB_ID: that.ParentLiDom.index() + 1,
F_ID: $dom.closest('ul').data('id'),
F_NAME: '焦点图',
PRD_ID: '',
F_URL: $dom.find('a').attr('href'),
F_INDEX: 1,
I_INDEX: index % 2 + 1// banner,li是双倍的
... ... @@ -136,6 +139,7 @@ plusstar = {
param: JSON.stringify($.extend(speckParamApp, {
TAB_ID: that.ParentLiDom.index() + 1,
F_ID: $dom.data('fid'),
PRD_ID: '',
F_NAME: $dom.data('name'),
F_URL: $domA.attr('href'),
F_INDEX: $dom.index() + 1,
... ... @@ -149,7 +153,8 @@ plusstar = {
window._yas.sendCustomInfo({
op: 'YB_FASHION_HOME_L',
param: JSON.stringify($.extend(speckParamApp, {
TAB_ID: that.ParentLiDom.index() + 1
TAB_ID: that.ParentLiDom.index() + 1,
PRD_ID: ''
}))
}, true);
},
... ...