if (AU.channelId == 'HJQCommonChannelId') {
window.removeEventListener(this.showDeal);
window.removeEventListener(this.hideDeal);
}
setTimeout(()=>{
window.addEventListener('pageshow', this.showDeal);
window.addEventListener('pagehide', this.hideDeal);
}, 1)
showDeal () {
setTimeout(()=>{
if (isPageHide) {
window.location.reload();
}
console.log(12);
},10)
},
hideDeal () {
isPageHide = true;
console.log(34);
},
网友评论