-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patherror.html
More file actions
144 lines (134 loc) · 7.6 KB
/
error.html
File metadata and controls
144 lines (134 loc) · 7.6 KB
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
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>异常警报 — 管理中心</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" type="text/css" href="lib/bootstrap/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="lib/jquery-1.7.2.min.js" type="text/javascript"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!--the top nav begin-->
<div class="navbar navbar-default" role="navigation">
<div class="navbar-inner">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">智慧农业物联网</a>
</div>
<ul class="nav navbar-nav pull-right" >
<li id= "fat-menu" class="dropdown">
<a href="#" role="button" class="dropdown-toggle" data-toggle="dropdown">
<span class="glyphicon glyphicon-user"></span> 用户名
<span class="glyphicon glyphicon-chevron-down"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation"><a role="menuitem" tabindex="-1" href="account_info.html">我的账户</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">登出</a></li>
</ul>
</li>
</ul>
</div>
</div>
<!--the top nav end-->
<!--the sidebar nav begin -->
<div class="sidebar-nav">
<a href="index.html" class="nav-header" ><span class="glyphicon glyphicon-home"></span> 管理中心 首页</a>
<a href="#dashboard-menu" class="nav-header collapsed" data-toggle="collapse"><span class="glyphicon glyphicon-dashboard"></span> 设备管理<span class="glyphicon glyphicon-chevron-up"></span></a>
<ul id="dashboard-menu" class="nav nav-list collapse">
<li ><a href="new_device.html">绑定新设备</a></li>
<li ><a href="my_device.html">我的设备</a></li>
<li ><a href="str_device.html">设备组织结构</a></li>
</ul>
<a href="led_manage.html" class="nav-header"><span class="glyphicon glyphicon-hd-video"></span> LED管理</a>
<a href="real_time_data.html" class="nav-header"><span class="glyphicon glyphicon-eye-open"></span> 实时数据</a>
<a href="history_data.html" class="nav-header" ><span class="glyphicon glyphicon-cloud"></span> 历史数据查询</a>
<a href="error.html" class="nav-header"><span class="glyphicon glyphicon-bell"></span> 异常警报<span class="label label-danger">4</span></a>
<a href="#account-menu" class="nav-header collapsed" data-toggle="collapse"><span class="glyphicon glyphicon-user"></span> 账户管理 <span class="glyphicon glyphicon-chevron-up"></span></a>
<ul id="account-menu" class="nav nav-list collapse">
<li ><a href="account_info.html">我的账户</a></li>
<li ><a href="account_permission.html">账户权限</a></li>
<li ><a href="change_password.html">修改密码</a></li>
</ul>
<a href="logout.html" class="nav-header" ><span class="glyphicon glyphicon-log-out"></span> 登出</a>
</div>
<!--the siderbar nav en-->
<div class="content">
<div class="header">
<!--page title begin-->
<h1 class="page-title">异常警报</h1>
</div>
<!--page title end and the main content begin-->
<div class="container">
<div class="display">
<!-- the alert info begin -->
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert">×</button>
<span id="error-type">传感设备</span>异常!您的传感设备<span class="alert-link" id="error-name"> 气象01 </span>有异常。
</div>
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert">×</button>
<span id="error-type">LED显示设备</span>异常!您的传感设备<span class="alert-link" id="error-name"> LED测试02 </span>有异常。
</div>
<!-- the alert info end and the panel begin-->
<div class="panel panel-default" id="all-device-detail">
<div class="panel-heading">
<h5>我的设备信息</h5>
</div>
<table class="table">
<thead><tr>
<th>设备名称</th>
<th>类型</th>
<th>状态</th>
<th>最新数据</th>
<th>操作</th>
</tr></thead>
<tbody>
<tr>
<td>气象站01</td>
<td><span class="glyphicon glyphicon-transfer"></span> 传感设备</td>
<td><span class="label label-danger"> 异常</span></td>
<td>未知</td>
<td><button class="btn btn-primary btn-xs" data-toggle="modal" data-target="#edit-device">修改</button> <a class="btn btn-default btn-xs" href="#">删除</a></td>
</tr>
<tr>
<td>气象站02</td>
<td><span class="glyphicon glyphicon-transfer"></span> 传感设备</td>
<td><span class="label label-success"> 正常</span></td>
<td>未知</td>
<td><button class="btn btn-primary btn-xs" data-toggle="modal" data-target="#edit-device">修改</button> <a class="btn btn-default btn-xs" href="#">删除</a></td>
</tr>
<tr>
<td>LED测试01</td>
<td><span class="glyphicon glyphicon-hd-video"></span> LED显示器</td>
<td><span class="label label-success"> 正常</span></td>
<td>未知</td>
<td><button class="btn btn-primary btn-xs" data-toggle="modal" data-target="#edit-device">修改</button> <a class="btn btn-default btn-xs" href="#">删除</a></td>
</tr>
<tr>
<td>LED测试02</td>
<td><span class="glyphicon glyphicon-hd-video"></span> LED显示器</td>
<td><span class="label label-danger"> 异常</span></td>
<td>未知</td>
<td><button class="btn btn-primary btn-xs" data-toggle="modal" data-target="#edit-device">修改</button> <a class="btn btn-default btn-xs" href="#">删除</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!--the container end -->
<footer>
<hr>
<p class="pull-right">© 2013 智慧农业物联网</p>
</footer>
</div>
<!--the content end -->
<script>
</script>
<script src="lib/bootstrap/js/bootstrap.js"></script>
</body>
</html>