var users = {};
//1.循环遍历users数据
var timestamp = new Date()
console.log(timestamp)
var usermob = getQueryString("userid");
var root = null;
/*
获取订购记录
*/
root = getRootPath();
queryWeiboUserInfoak(usermob);
function queryWeiboUserInfoak(usermob) {
// var productid = 2020010201
var param = {
"fog": 'df3958be828815ec18613612fa1e7a55e6077a33cfc0098b64a25eeabaa4e118976fdec7a362c595035df466add330085bd685bd54bf9abc229f4b59abe09f1618473ede33aa3665bd2c88a2ad1bc7cc690066e6a331a0cc078fd38b86681cbab250b233fcb92ba4b318f90df696b5ae',
'userid': usermob,
'vipcode': '10001'
}
var def = $.Deferred();
$.ajax({
url: root + "-s1api" + "/rights/querys",
type: "POST",
contentType: "application/json",
data: JSON.stringify(param)
}).then(function(response) {
// console.log(response)
var more = ''
response.data.forEach(function(item) {
if (item.status == "3") {
more += `
${item.productName}
领取权益立即领取
`
}
// console.log(response.data)
switch (item.vipname) {
case '爱奇艺视频会员周卡':
var img = '202203/images/爱奇艺.png'
break;
case '美团外卖红包5元':
var img = '202203/images/美团.png'
break;
case '抖音币50个':
var img = '202203/images/抖音币.png'
break;
case '优酷视频会员周卡':
var img = '202203/images/优酷.png'
break;
case '腾讯视频会员周卡':
var img = '202203/images/腾讯视频.png'
break;
case '芒果TV PC移动影视会员周卡':
var img = '202203/images/芒果tv.png'
break;
case '蜻蜓FM超级会员周卡':
var img = '202203/images/蜻蜓.png'
break;
default:
break;
}
if (item.vipuser != null) {
more += `
${item.productName}
领取权益${item.vipname}
领取号码${item.vipuser}
领取时间${item.ordertime}
`
}
})
$('#bodyt').append(more)
switch (response.resultCode) {
case "0000":
def.resolve(response);
break;
case "1066":
def.resolve(response);
break;
default:
compnt.showAlert(response.errorInfo)
def.reject(response);
break;
}
$('.text-ak').click(function() {
var d1 = new Date(timestamp); //已知时间戳
var d2 = new Date(); //当前时间戳
let minute = (parseInt(d2 - d1) / 1000 / 60) //算出相差的分钟
console.log(d2)
console.log(minute)
if (minute < 10) {
var spid = $(this).attr("id")
var a = getQueryString("cpid");
var b = getQueryString("userid");
var c = getQueryString("usermob");
var fes = getQueryString("fes");
var sou = getQueryString("sou");
var cbUrls;
if (window.location.href.indexOf("https://800.wo.cn/orderchannel") >= 0) {
cbUrls = "https://800.wo.cn/orderchannel/douyin/15/draw20220313.html?fes=jjd&sou=1m&cpid=" + a + '&userid=' + b + '&usermob=' + c + '&' + spid;
} else if (window.location.href.indexOf("http://100.0.4.69:3344") >= 0) {
cbUrls = "http://100.0.4.69:3344/orderchannel/douyin/15/draw20220313.html?fes=" + fes + "&sou=" + sou + '&cpid=' + a + '&userid=' + b + '&usermob=' + c + '&' + spid;
}
location.href = cbUrls
} else {
var spid = $(this).attr("id")
var cbUrl = 'https://800.wo.cn/orderchannel/douyin/15/draw20220313.html?fes=jjd&sou=1m&' + spid;
// var cbUrl = 'https://800.wo.cn/orderchannel/douyin/15/draw20220313.html?' + 'fes=' + fes + '&sou=' + sou;
if (cbUrl.indexOf('cpid=') > 0) {
cbUrl = cbUrl.substr(0, cbUrl.indexOf('cpid=') - 1)
}
if (window.location.href.indexOf('?') >= 0) {
cbUrl += '&cpid=2017060800064876';
} else {
cbUrl += '?cpid=2017060800064876';
}
// 调用南研一键取号页面
window.location.href = 'https://account.bol.wo.cn/cuuser/unity/redirectOnekeyLogin?clientId=directflow&redirectUrl=' + encodeURIComponent(encodeURIComponent(cbUrl))
}
});
}).fail(function(error) {
def.reject('服务调用异常')
})
return def;
};
/*
获取root
*/
function getRootPath() {
//获取当前网址,如: http://localhost:8080/ems/Pages/Basic/Person.jsp
var curWwwPath = window.document.location.href;
//获取主机地址之后的目录,如: /ems/Pages/Basic/Person.jsp
var pathName = window.document.location.pathname;
var pos = curWwwPath.indexOf(pathName);
//获取主机地址,如: http://localhost:8080
var localhostPath = curWwwPath.substring(0, pos);
//获取带"/"的项目名,如:/ems
var projectName = pathName.substring(0, pathName.substr(1).indexOf('/') + 1);
root = (localhostPath + projectName);
return (localhostPath + projectName);
}
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]);
return null;
}