var htmlStr="
";
document.write(htmlStr);
function clickAd(id,supplierId,codeInfoId){
var userName = $("#userName").text();
var isVip = 0;
if(userName != null && userName !=""){
isVip = 1;
console.log(userName+" "+isVip);
}
$.ajax({
type : "post",
url : "https://customer.qegoo.cn/adLog/add",
dataType : "jsonp",
data : {
isVip : isVip,
adMaterialId : id,
supplierId : supplierId,
codeInfoId : codeInfoId
},
async:false,
success : function(data) {
}
})
}