|
@@ -64,7 +64,7 @@
|
|
|
const pointName = id + '_IOS'
|
|
|
operate(pointName);
|
|
|
}
|
|
|
- function operate(pointName){
|
|
|
+ function operate(pointName,type){
|
|
|
$.ajax({
|
|
|
url: baseUrl + '/api/public/v1/systemBuriedPoint/stat',
|
|
|
type: 'post',
|
|
@@ -75,7 +75,7 @@
|
|
|
dataType: 'json',
|
|
|
cache: false,
|
|
|
success: function (res) {
|
|
|
- if(isAndroid){
|
|
|
+ if(isAndroid && type === 'click'){
|
|
|
getAppDownload();
|
|
|
}
|
|
|
},
|
|
@@ -91,7 +91,7 @@
|
|
|
document.documentElement.style.overflow='hidden';
|
|
|
}else if(isAndroid){
|
|
|
const pointName = id + '_click'
|
|
|
- operate(pointName);
|
|
|
+ operate(pointName,'click');
|
|
|
}else if(isiOS){
|
|
|
const pointName = id + '_IOS_click'
|
|
|
operate(pointName);
|