Files
youlegames/codes/agent/game/dlweb/api/web2/invite_target.html
2026-03-15 01:27:05 +08:00

32 lines
823 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
</head>
<body>
<script src="./libs/jquery.min.js?__HTML_VERSION__=3"></script>
<script src="./js/function.js?__HTML_VERSION__=18"></script>
<script src="./libs/layer_mobile/layer.js?__HTML_VERSION__=3"></script>
<script>
$(function () {
var params = $.getQueryObj();
if(params.aid) {
$.api(
'youle.youle.channelConfigById',
{
id: params.aid
},
function (agentInfo) {
window.location.href = params.t + '.html?agentid='+agentInfo.agent_id+'&channelid='+agentInfo.channel_id+'&sale='+params.sid
}
);
} else {
window.location.href = params.t+'.html'+window.location.search;
}
});
</script>
</body>
</html>