Commit 7b3c4285 authored by xxx's avatar xxx

1

parent 65f777c2
......@@ -9,45 +9,6 @@
<script src="https://cdn.bootcss.com/eruda/1.5.8/eruda.min.js"></script>
<script>
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>
<!-- <title><%= htmlWebpackPlugin.options.title %></title> -->
......
......@@ -361,6 +361,7 @@ export default {
navigator.geolocation.getCurrentPosition(
//locationSuccess 获取成功的话
function(position) {
console.log(position.coords);
let LoaObj1 = {};
let LoaObj1xy = {};
//判断该车是否在行驶状态
......
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