$(document).on('click',".icon1-support",function(){
// $(".icon1-support").click("click",function(){
console.log("1");
let thumbup_api = ip +'/member/thumbup.do';
$.ajax({
url:thumbup_api,
data:{openId:openId},
success:function(d){
console.log(d);
if(d.resultCode==200){
if(d.data.code==200){
}else{
layer.open({
content: d.resultMessage
,skin: 'msg'
,time: 2 //2秒后自动关闭
});
};
}else{
layer.open({
content: d.resultMessage
,skin: 'msg'
,time: 2 //2秒后自动关闭
});
};
}
})
})
网友评论