if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
console.dir(navigator.userAgent)
this.phoneType = '苹果系统'
} else if (/(Android)/i.test(navigator.userAgent)) {
this.phoneType = '安卓系统'
} else {
this.phoneType = 'PC电脑'
};
判断是否在 微信浏览器运行
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == 'micromessenger') {
this.isweChat = '微信'
} else {
this.isweChat = '浏览器'
}