修改后的
// 判断页面是在企业微信端打开还是在浏览器打开
isQyweixin(){
//判断当前入口是PC端还是APP端
let flag = navigator.userAgent.match(
/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
)==null?false:true;
let isWW = flag?this.is_weixin()?"来自于APP端企业微信":"":this.is_weixin()?"来自于PC端的企业微信":"来自于PC端浏览器";
if(isWW === '来自于PC端的企业微信' || isWW === '来自于APP端企业微信' ){
return true //企业微信端可以直接登陆
}else{
return false
}
},
is_weixin(){
//判断是在企业微信打开 还是 在浏览器打开
return navigator.userAgent.toLowerCase().indexOf('micromessenger') !== -1
}