HuXiYu
authored
|
1
|
@section header
|
赖素文
authored
|
2
|
{
|
赖素文
authored
|
3
|
<link href="~/css/iot/iconfont.css" rel="stylesheet" />
|
赖素文
authored
|
4
5
6
7
8
9
10
11
12
|
<style type="text/css">
body, html, #container {
width: 100%;
height: 100%;
overflow: hidden;
margin: 0;
font-family: "微软雅黑";
}
|
赖素文
authored
|
13
14
15
|
.BMap_bubble_title {
font-weight: 900;
}
|
赖素文
authored
|
16
17
18
19
20
|
.footer-list {
position:fixed;
bottom:10px;
z-index: 9999;
|
赖素文
authored
|
21
|
width: 94.9%;
|
赖素文
authored
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
height: 70px;
justify-content: space-evenly;
font-size: 18px;
}
.footer-project, .footer-eq, .footer-onlineRate, .footer-tuoRate {
align-items: center;
justify-content: space-around;
width: 16%;
height: 100%;
border: 1px rgb(55, 149, 242) solid;
border-radius: 20px;
background-color: #eeeeee;
}
.iconfont {
font-size: 42px;
}
.sidebar-list {
position: fixed;
right: 10px;
|
赖素文
authored
|
44
|
top: 10%;
|
赖素文
authored
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
z-index: 9900;
max-height:250px;
overflow-y:auto;
font-size: 20px;
background-color: #eeeeee;
}
.layui-nav {
z-index: 9999;
}
.layui-nav-child a:hover {
border-bottom: 3px solid #42b983;
}
|
王硕
authored
|
59
60
61
62
63
64
65
|
.top-refresh-data{
position: fixed;
top: 11px;
left: 120px;
width: 10%;
height: 32px;
|
赖素文
authored
|
66
|
line-height: 35px;
|
王硕
authored
|
67
68
69
70
71
|
background-color: #ffffff;
font-size: 1vw;
box-shadow: 1px 2px 1px rgba(0,0,0,.15);
border-radius: 3px;
}
|
赖素文
authored
|
72
|
</style>
|
HuXiYu
authored
|
73
|
}
|
赖素文
authored
|
74
|
<!--地图-->
|
赖素文
authored
|
75
|
<div id="container" style="overflow: hidden; position: relative; background-image: url("https://webmap0.bdimg.com/image/api/bg.png"); text-align: left; touch-action: none;"></div>
|
HuXiYu
authored
|
76
|
|
赖素文
authored
|
77
78
79
80
81
82
83
84
|
<!--尾部统计-->
<div class="footer-list div-flex vueApp">
<div class="footer-project div-flex">
<div><span class="iconfont icon-xiangmu" style="color:rgb(146, 133, 235)"></span></div>
<div class=""><span style="color:blue">{{footer.projectCount}}个</span>/项目</div>
</div>
<div class="footer-eq div-flex">
<div><span class="iconfont icon-shebei" style="color:rgb(146, 133, 235)"></span></div>
|
HuXiYu
authored
|
85
|
<div class=""><span style="color:blue">{{footer.eqCount}}台</span>/设备</div>
|
赖素文
authored
|
86
87
88
|
</div>
<div class="footer-onlineRate div-flex">
<div><span class="iconfont icon-shebeizaixianshuai" style="color:rgb(146, 133, 235)"></span></div>
|
赖素文
authored
|
89
|
<div class=""><span style="color:blue">{{footer.eqOnlineRate}}</span>/在线率</div>
|
赖素文
authored
|
90
|
</div>
|
|
91
|
|
赖素文
authored
|
92
93
|
</div>
|
王硕
authored
|
94
95
96
97
|
<div class="footer-list div-flex top-refresh-data">
数据刷新倒计时:<span style="color:cornflowerblue;display:block" id="refreshDataTime">20</span>
</div>
|
赖素文
authored
|
98
99
100
101
102
103
104
105
106
107
108
|
<!--侧栏 layui-nav-itemed-->
<div class="sidebar-list">
<ul class="layui-nav layui-nav-tree layui-bg-blue" lay-filter="test">
<li class="layui-nav-item">
<a href="javascript:;">项目列表</a>
<dl class="layui-nav-child sidebar-list-item">
</dl>
</li>
</ul>
</div>
|
HuXiYu
authored
|
109
110
111
|
@section Scripts
{
|
赖素文
authored
|
112
|
<script type="text/javascript" src="https://api.map.baidu.com/api?v=1.0&&type=webgl&ak=00A47SzVEEXHPZyUakGyW18XcQXbwzZh">
|
HuXiYu
authored
|
113
|
</script>
|
赖素文
authored
|
114
|
<script src="~/js/vuemin2.js"></script>
|
赖素文
authored
|
115
116
|
<script src="~/basejs/systemmap.js"></script>
<script src="~/basejs/projectmap.js"></script>
|
赖素文
authored
|
117
|
|
HuXiYu
authored
|
118
|
}
|
赖素文
authored
|
119
120
|
|