Commit 8ddbfbef authored by xxx's avatar xxx

1

parent 39a2579d
...@@ -8,12 +8,48 @@ ...@@ -8,12 +8,48 @@
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> <link rel="icon" href="<%= BASE_URL %>favicon.ico">
<script src="https://cdn.bootcss.com/eruda/1.5.8/eruda.min.js"></script> <script src="https://cdn.bootcss.com/eruda/1.5.8/eruda.min.js"></script>
<script> <script>
//eruda.init(); eruda.init();
//获取设备IMEI、IMSI、型号、厂商等
let webLog = {}
let userAgent = navigator.userAgent
// 获取微信版本
let m1 = userAgent.match(/MicroMessenger.*?(?= )/)
if (m1 && m1.length > 0) {
webLog.wechat = m1[0]
}
// 苹果手机
if (userAgent.includes('iPhone') || userAgent.includes('iPad')) {
// 获取设备名
if (userAgent.includes('iPad')) {
webLog.device = 'iPad'
} else {
webLog.device = 'iPhone'
}
// 获取操作系统版本
m1 = userAgent.match(/iPhone OS .*?(?= )/)
if (m1 && m1.length > 0) {
webLog.system = m1[0]
console.log(webLog.system)
}
}
// 安卓手机
if (userAgent.includes('Android')) {
// 获取设备名
m1 = userAgent.match(/Android.*; ?(.*(?= Build))/)
console.log(userAgent.match(/Android.*; ?(.*(?= Build))/));
if (m1 && m1.length > 1) {
webLog.device = m1[1]
console.log(webLog.device)
}
// 获取操作系统版本
m1 = userAgent.match(/Android.*?(?=;)/)
console.log(userAgent.match(/Android.*?(?=;)/));
if (m1 && m1.length > 0) {
webLog.system = m1[0]
}
}
</script> </script>
<!-- <title><%= htmlWebpackPlugin.options.title %></title> --> <!-- <title><%= htmlWebpackPlugin.options.title %></title> -->
<title>卡车调度系统终端平台</title> <title>卡车调度系统终端平台</title>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment