...
|
...
|
@@ -69,9 +69,13 @@ function _getOtherFilterValue() { |
|
|
}
|
|
|
|
|
|
/** *埋点方法***/
|
|
|
function yasEvent(op, parameter) {
|
|
|
function yasEvent(op, parameter, flag) {
|
|
|
var CID = 1;
|
|
|
|
|
|
if (typeof flag === 'undefined') {
|
|
|
flag = true;
|
|
|
}
|
|
|
|
|
|
if (!window._yas || !window._yas.sendCustomInfo) {
|
|
|
return false;
|
|
|
}
|
...
|
...
|
@@ -103,17 +107,17 @@ function yasEvent(op, parameter) { |
|
|
window._yas.sendCustomInfo({
|
|
|
op: op,
|
|
|
param: JSON.stringify(parameter)
|
|
|
}, true);
|
|
|
}, flag);
|
|
|
}
|
|
|
|
|
|
function getFilterValue() {
|
|
|
return _getCommonFilterValue() + _getOtherFilterValue();
|
|
|
}
|
|
|
|
|
|
function givePoint(op, parameter) {
|
|
|
function givePoint(op, parameter, flag) {
|
|
|
var sto = setInterval(function() {
|
|
|
if (window._yas && window._yas.sendCustomInfo) {
|
|
|
yasEvent(op, parameter);
|
|
|
yasEvent(op, parameter, flag);
|
|
|
clearInterval(sto);
|
|
|
}
|
|
|
}, 100);
|
...
|
...
|
|