赞
踩
在main.js中。去全局拦截。
router.beforeEach((to, from, next) => {
if(navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ //判断如果是微信浏览器
if(to.path==='/tip'){ //若是微信浏览器的提示页
Vue.prototype.flag=true;
next();
}else{
Vue.prototype.flag = false;
let path='/tip';
next(path);
}
}else{ //非微信浏览器
next();
}
});
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。