智慧保安APP验收版本
shuishen
2021-12-02 56ee0734fc0cbca40f992823a636ec8feebd1f80
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
 
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
        <title>地图</title>
        <!-- vue -->
        <script src="https://cdn.jsdelivr.net/npm/vue@2.6.12"></script>
 
        <!-- leaflet支持 -->
        <script src="./lid/leaflet.js"></script>
        <link rel="stylesheet" href="./lid/leaflet.css" />
 
        <!-- leaflet聚合支持 -->
        <link rel="stylesheet" href="./lid/MarkerCluster.css" />
        <link rel="stylesheet" href="./lid/MarkerCluster.Default.css" />
        <script src="./lid/leaflet.markercluster-src.js"></script>
 
        <!-- layui支持 -->
        <!-- <link rel="stylesheet" href="../map/lib/layui/css/layui.css" media="all"> -->
        <!-- <script src="../map/lib/layui/layui.js" charset="utf-8"></script> -->
 
        <!-- 百度地图api -->
        <script type="text/javascript" src="https://mapapi.qq.com/web/mapComponents/geoLocation/v/geolocation.min.js">
        </script>
 
        <!-- axios支持 -->
        <script src="./lid/axios.js"></script>
 
        <!-- elementui -->
        <script src="./lid/elementUi.js"></script>
        <!-- <link rel="stylesheet" href="../map/lib/elementUi.css"> -->
        <link rel="stylesheet" href="./css/elementUi.css">
        <!-- <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css"> -->
 
        <!-- jqurey -->
        <script src="./lid/jquery.js" charset="utf-8"></script>
 
        <!-- 微信支持 -->
        <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.4.0.js"></script>
        <!-- <script src="./js/wx.js"></script> -->
 
        <!-- uni 的 SDK -->
        <script type="text/javascript" src="https://js.cdn.aliyun.dcloud.net.cn/dev/uni-app/uni.webview.1.5.2.js">
        </script>
        <!-- 百度地图api -->
        <script type="text/javascript" src="./js/geolocation.min.js"></script>
        <!-- omyself支持 -->
        <link rel="stylesheet" href="./css/body.css" />
 
        <!-- myDomMove -->
        <script src="./js/move.js"></script>
        <!-- sha1加密 -->
        <!-- <script src="./js/sha1.js"></script> -->
        <script src="http://pv.sohu.com/cityjson?ie=utf-8"></script>
    </head>
 
    <body>
        <div id="mapVue">
            
            <!-- <div class="dingwei" @click="locationMap">
                <img style="width: 60%" src="./img/dingwei.png" alt="">
            </div> -->
            
            <div id="map">
            </div>
            <!-- <div id="salffPopup" v-show="showsalffPopup">
                <div class="oncessalfe">
                    保安姓名:{{oncesSalfeData.realName}}
                </div>
            </div> -->
            <el-drawer
              :title="oncesSalfeData.realName"
              :visible.sync="drawer"
              :direction="'btt'"
              :size="145"
              :with-header="false">
              <!-- <span>我来啦!</span> -->
              <div class="oncessalfe">
                  保安姓名:<div class="in-oncessalfe">{{oncesSalfeData.realName}}</div>
              </div>
              <div class="oncessalfe">
                  保安公司:<div class="in-oncessalfe">{{oncesSalfeData.deptName}}</div>
              </div>
            </el-drawer>
            
        </div>
        <!-- vue渲染 -->
        <script src="./js/vueMain.js"></script>
    </body>
 
</html>