Blame view

uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js 310 Bytes
4b045f7c   刘淇   江阴初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
  export function isPC() {
  	var userAgentInfo = navigator.userAgent;
  	var Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"];
  	var flag = true;
  	for (let v = 0; v < Agents.length - 1; v++) {
  		if (userAgentInfo.indexOf(Agents[v]) > 0) {
  			flag = false;
  			break;
  		}
  	}
  	return flag;
  }