bec初级课程优选
$(function () {
var userid = getcookie(‘ujqtlmluserid’);
console.log(userid);
$.ajax({
type: ‘post’,
url: apiurl + ‘/order/offerindex’,
data: {userid: userid},
datetype: ‘json’,
success: function (ret) {
console.log(json.parse(ret).num);
if (json.parse(ret).num != 0) {
$(‘.toeicts’).show();
settimeout(function () {
$(‘.toeicts’).hide();
}, 8000);
$(‘.redicon’).show();
} else {
$(‘.redicon’).show();
}
}
})
})