企业微信打开h5页面
window.location.href=url
回退
代码写在onShow中 判断页面是否白屏
this.$nextTick(()=>{
const query = uni.createSelectorQuery().in(this);
query.select('#box').boundingClientRect(data => {
if(data.height == 0){ //白屏页面高度为0
location.reload() //刷新页面
}
}).exec();
})