...
|
...
|
@@ -35,7 +35,8 @@ var appInfo = { |
|
|
fst: 0, //firstScreenTime
|
|
|
// dt:document.title,//document title
|
|
|
sv: '', // YAS版本
|
|
|
ab: cookies('ab_5') || ''
|
|
|
ab: cookies('ab_5') || '',
|
|
|
apf: window.location.search.indexOf('app_version=') >= 0 ? 'Y' : 'N'
|
|
|
};
|
|
|
|
|
|
//获取跟踪ID
|
...
|
...
|
@@ -379,6 +380,7 @@ _yas.sendMouseEvent = function(e, flag) { |
|
|
y: pos.y,
|
|
|
et: e.type
|
|
|
};
|
|
|
mp.ts = (new Date()).getTime();
|
|
|
var info = util.merge(appInfo, custInfo);
|
|
|
info = util.merge(info, browserInfo);
|
|
|
info = util.merge(info, mp);
|
...
|
...
|
@@ -395,6 +397,7 @@ _yas.sendMouseEvent = function(e, flag) { |
|
|
* 取值是false时, 记录cookie, 待进入新页面后通过send方法将cookie中的事件记录发送并清空。
|
|
|
*/
|
|
|
_yas.sendCustomInfo = function(json, flag) {
|
|
|
json.ts = (new Date()).getTime(); // 事件时间戳
|
|
|
if (!flag) {
|
|
|
var string = JSON.stringify(json);
|
|
|
cookies('_yascustjson', string, {
|
...
|
...
|
|