zengh
2022-05-09 52c39f5e2711e5535b689b66dfa5e100c7882b7f
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!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> -->
 
    <!-- axios支持 -->
    <script src="../map/lib/axios.js"></script>
    <!-- elementui -->
    <script src="../map/lib/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="../map/lib/jquery.js" charset="utf-8"></script>
 
    <!-- 微信支持 -->
    <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script>
    <!-- <script src="./js/wx.js"></script> -->
    
    <!-- 百度地图api -->
    <script type="text/javascript" src="./js/geolocation.min.js"></script>
    
    <!-- omyself支持 -->
    <link rel="stylesheet" href="./css/lxdhmap.css" />
 
    <!-- myDomMove -->
    <!-- <script src="./js/move.js"></script> -->
    <!-- sha1加密 -->
    <!-- <script src="./js/sha1.js"></script> -->
 
</head>
 
<body>
    <div id="mapVue">
        
        <div id="map"></div>
        <div class="lxdh_input_div">
            <input id="lxdh_input" v-model="searchValue" type="text">
            
            <img class="input_img" @click="lxdhSearch" src="img/sous.png">
            <!-- <input style="width: 30px;
    height: 30px;vertical-align: middle;" id="lxdh_input_ss" @click="lxdhSearch" name="submit" type="image" value="ee" src="img/sous.png" />
        </div> -->
        
        <div id="mh_query" v-if="mh_query_show">
            
        </div>
    </div>
    
    <div id="seedata">
        <div class="title">
            {{seedata.deviceName}}
            <div class="title-span"> </div>
            {{seedata.deviceNumber}}
            <div class="title-span"> </div>
            <div class="title-span"> </div>
        </div>
        <div class="main">
            <div class="f-m-once">
                <div class="f-m-o-title">
                    <img class="f-m-o-t-img" src="./img/shiyongren.png" alt="">
                    使用方:
                </div>
                <div class="f-m-o-center">{{seedata.deptName}}</div>
            </div>
            <div class="f-m-once">
                <div class="f-m-o-title">
                    <img class="f-m-o-t-img" src="./img/ren.png" alt="">
                    接警人:
                </div>
                <div class="f-m-o-center">{{seedata.alarmPeople}}</div>
            </div>
            <div class="f-m-once">
                <div class="f-m-o-title">
                    <img class="f-m-o-t-img" src="./img/dianhua.png" alt="">
                    联系电话:
                </div>
                <div class="f-m-o-center">{{seedata.phoneNumber}}</div>
            </div>
            <el-divider></el-divider>
            <div class="f-m-once">
                <div class="f-m-o-title">
                    <img class="f-m-o-t-img" src="./img/shijian.png" alt="">
                    报警时间:
                </div>
                <div class="f-m-o-center">{{seedata.alarmTime}}</div>
            </div>
            <div class="f-m-once">
                <div class="f-m-o-title">
                    <img class="f-m-o-t-img" src="./img/leixing.png" alt="">
                    报警类型:
                </div>
                <div class="f-m-o-center">{{seedata.alarmType}}</div>
            </div>
            <el-divider></el-divider>
            <div class="f-m-once">
                <div class="f-m-o-title">
                    <img class="f-m-o-t-img" src="./img/beizhu.png" alt="">
                    备注:
                </div>
                <div class="f-m-o-center">{{seedata.bz}}</div>
            </div>
            <div class="but">
                <div class="butb" @click="LXdhJQ">路线导航</div>
            </div>
        </div>
    </div>
    
    </div>
    
    
    <!-- vue渲染 -->
    <script src="./js/lxdhmap.js"></script>
</body>
 
</html>