APP 内嵌H5, H5页面可见性改变事件 : visibilitychange
功能类似小程序的onshow方法。
document.addEventListener('visibilitychange',()=>{
console.log('监听页面返回----',document);
if (!document.hidden) { // 页面隐藏
this.$refs.recommendPanel.showFundBox = false;
this.getRecommendedList(true);
}
},false)