旧的活动页面,10不同活动奖励提前领,复制到旧活动页面控制台回车
免责声明:如果被清算我不负责

document.getElementsByClassName('p3')[0].classList.add('getPrizeTwo');
//领取奖励
$('.getPrizeTwo').click(function () {
// 未登录
if (Act.isLogin === false) {
Act.checkLogin();
return;
}
//未绑定角色
if (Act.isBind === false) {
Act.bindRole();
return;
}
//已领取
// var cla = $(".accumulationSign" + num).attr('class');
// if (cla.indexOf('done') != -1) {
// return false;
// }
// var type = $(this).attr('data');
Act.flowRequest('070286', {}, function (res) {
if (res.iRet === 0) {
// $(".accumulationSign" + num).addClass('done').html('已领取');
Act.alertPop(res.sMsg);
}
});
})