|
|
// 详情页底部店铺点击埋点
|
|
|
$('a.store').on('click', function() {
|
|
|
if (window._yas && window._yas.sendCustomInfo) {
|
|
|
window._yas.sendCustomInfo({
|
|
|
op: 'YB_BRAND_SHOP_C',
|
|
|
param: JSON.stringify({
|
|
|
BRAND_ID: $('#brand-id').val(),
|
|
|
SHOP_ID: $('#shopId').val(),
|
|
|
POS_ID: 102
|
|
|
})
|
|
|
}, true);
|
|
|
}
|
|
|
});
|
|
|
|
|
|
$('#enter-store').on('click', function() {
|
|
|
if (window._yas && window._yas.sendCustomInfo) {
|
|
|
window._yas.sendCustomInfo({
|
|
|
op: 'YB_BRAND_SHOP_C',
|
|
|
param: JSON.stringify({
|
|
|
BRAND_ID: $('#brand-id').val(),
|
|
|
SHOP_ID: $('#shopId').val(),
|
|
|
POS_ID: 101
|
|
|
})
|
|
|
}, true);
|
|
|
}
|
|
|
}); |
...
|
...
|
|