window.USER_INFO = {}
window.USER_CENTER_TICKET = '';
window.USER_LOGIN_URL = 'https://bbs.iikx.com/member.php?mod=logging&action=login';
window.USER_REGISTER_URL = 'https://bbs.iikx.com/member.php?mod=register';
window.addEventListener("load",()=>{
try{
document.getElementById('LoginStatus').innerHTML=`
{
if (event.data === 'ucenterLoginSuccess') {
window.location.reload();
}else if(event.data==='ucenterLoginClose') {
ucenterLoginClose();
}
});
window.ucenterLogin = ()=>{
const target = document.getElementById('user-login-drawer');
const iframe = document.getElementById('user-login-drawer-iframe');
const active = target.getAttribute('active') == 'true';
target.setAttribute('active',!active);
document.body.setAttribute("unable-scroll",!active);
if(!active && !window.userLoginFrameLoaded){
iframe.src = 'https://www.iikx.com/ucenter/?html=yes&origin=' + encodeURIComponent(window.location.host) + '&referrer=' + encodeURIComponent(window.location.href);
iframe.onload = function() {
window.userLoginFrameLoaded = true;
document.getElementById('user-login-drawer-loader').style.display = 'none';
};
}
}
window.ucenterLoginClose = ()=>{
const target = document.getElementById('user-login-drawer');
target.setAttribute('active',false);
document.body.setAttribute("unable-scroll",false);
}
window.ucenterLoginSuccess = ()=>{
window.location.reload();
}
}catch(e){
console.log(e)
}
})