无人机管理后台前端(已迁走)
shuishen
2025-06-11 dae8d5ad8df88593261f6df3697fbfe2cab3047b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
 
<head>
  <meta charset="UTF-8" />
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <meta http-equiv="X-UA-Compatible" content="chrome=1" />
  <meta name="renderer" content="webkit" />
  <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0" />
  <meta name="mobile-web-app-capable" content="yes" />
  <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  <meta name="format-detection" content="telephone=no" />
  <link rel="icon" href="/img/bg/index_logo2.png" />
  <link rel="stylesheet" href="/fonts/font.css" />
  <link rel="stylesheet" href="/iconfont/index.css" />
  <link rel="stylesheet" href="/iconfont/avue/iconfont.css" />
  <link rel="stylesheet" href="/iconfont/saber/iconfont.css" />
  <link rel="stylesheet" href="/css/loading.css" />
  <link rel="stylesheet" href="/css/saber.css" />
  <!-- <script src="https://unpkg.com/axios/dist/axios.min.js"></script> -->
  <!-- 导入需要的包 (一定要放到index.html中的head标签里) -->
  <!-- 高德地图api更新必须配合安全密钥使用 -->
  <script>
    window._AMapSecurityConfig = {
      securityJsCode: '4fb5f6dbb164e46890e2cde357024bbc',
    }
  </script>
  <script type="text/javascript"
    src='https://webapi.amap.com/maps?v=2.0&key=4b49ed77772d77e9a8c36f6a4663eaa9&plugin=AMap.PlaceSearch,AMap.Geocoder'></script>
  <script src="https://webapi.amap.com/ui/1.1/main.js?v=1.0.11"></script>
  <title>中图智绘低空无人机监测网平台</title>
</head>
 
<body class="theme-white">
  <div id="app">
    <div id="loader-wrapper">
       <div class='loader-box'>
      <span>综</span>
      <span>合</span>
      <span>管</span>
      <span>理</span>
      <span>平</span>
      <span>台</span>
    </div>
      <div class="loader-title">系统加载中</div>
    </div>
  </div>
  <script type="module" src="/src/main.js"></script>
</body>
 
<!-- <script>
    document.addEventListener('DOMContentLoaded', function () {
      var getData = function (name) {
        var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)');
        var r = window.location.search.substr(1).match(reg);
        if (r != null) return decodeURI(r[2]);
        return null;
      };
      var id = getData('id') || 2;
 
      console.log(id, 888);
 
      axios.get('http://127.0.0.1/blade-system/sysConfig/getDetail?id=' + id).then(function (res) {
        var data = res.data.data;
        console.log(data, 5555);
        // window.document.title = data.name;
        document.title = data.name;
      });
    });
  </script> -->
 
</html>