...
|
...
|
@@ -158,6 +158,24 @@ var page = { |
|
|
UDID = window.queryString.udid || '',
|
|
|
SID = window.queryString.session_id || '';
|
|
|
|
|
|
// 刚进页面埋点
|
|
|
var defaultTracking = function() {
|
|
|
if (window._yas && window._yas.sendCustomInfo) {
|
|
|
window._yas.sendCustomInfo({
|
|
|
op: 'YB_MEM_DAY_L',
|
|
|
param: JSON.stringify({
|
|
|
C_ID: C_ID,
|
|
|
UDID: UDID,
|
|
|
SID: SID,
|
|
|
}),
|
|
|
}, true);
|
|
|
} else {
|
|
|
setTimeout(function(){
|
|
|
defaultTracking();
|
|
|
}, 1000);
|
|
|
}
|
|
|
}
|
|
|
defaultTracking();
|
|
|
|
|
|
// 签到埋点
|
|
|
$('#play-coin').on('click', function() {
|
...
|
...
|
@@ -263,4 +281,4 @@ var page = { |
|
|
window.$ = $;
|
|
|
$(function() {
|
|
|
page.init();
|
|
|
}); |
|
|
}); |
|
|
\ No newline at end of file |
...
|
...
|
|