var ua = window.navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == 'micromessenger') {
if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) {
window.location = "https://hzapp.hezongyy.com/download";
} else if (navigator.userAgent.match(/android/i)) {
this.$router.push('/tipsPage')
}
}else{
if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) {
window.location.href = "https://hzapp.hezongyy.com/download";
} else if (navigator.userAgent.match(/android/i)) {
window.open("yaoyigou://www.hezongyy.com",'_self')
setTimeout(()=>{
let hidden=window.document.hidden||window.document.webkitHidden||window.document.mozHidden||window.document.msHidden
if(typeof(hidden) =="undefined"||hidden==false){
window.location.href="https://hzapp.hezongyy.com/download"
}
},1500)
}
}