-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcockpitmanage.html
More file actions
148 lines (148 loc) · 5.88 KB
/
cockpitmanage.html
File metadata and controls
148 lines (148 loc) · 5.88 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
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta http-equiv="X-UA-Compitable" content="IE=edge">
<title>驾驶仓管理页面</title>
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-table.css">
<link rel="stylesheet" href="css/bootstrap-editable.css">
<link rel="stylesheet" href="css/common.css">
</head>
<body id="skin-blur-blue" class="settingbody">
<div class="topNav">
<div class="tm-icon">
<a href="javascript:void(0)" id="menu-toggle">
<img src="images/menu.png" alt="">
</a>
</div>
<a class="logo" href="index.html">
<img src="images/logo.png" alt="" class="img-responsive"/>
</a>
<div class="tm-icon">
<a href="index.html">
<img src="images/home.png" alt="返回首页"/>
</a>
</div>
<div class="tm-icon">
<a href="javascript:void(0)" title="时间回溯"
data-container="body" data-toggle="popover" data-placement="bottom"
data-content="底部的 Popover 中的一些内容">
<img src="images/time.png" alt=""/>
</a>
</div>
<div class="tm-icon">
<a href="javascript:void(0)">
<img src="images/help.png" alt="帮助"/>
</a>
</div>
<div class="tm-icon">
<a href="javascript:void(0)">
<img src="images/lock.png" alt="锁定"/>
</a>
</div>
<div class="tm-icon">
<a href="javascript:void(0)">
<img src="images/baseline.png" alt="基线"/>
</a>
</div>
<div class="searchBox">
<div class="input-group">
<label for="search" class="input-group-addon"></label>
<input type="text" class="form-control" id="search">
</div>
</div>
<div class="tm-icon">
<a href="javascript:void(0)">
<img src="images/server.png" alt=""/>
</a>
</div>
<div id="time">
<span id="hours">10</span>
:
<span id="min">04</span>
:
<span id="sec">31</span>
</div>
<div class="tm-icon">
<a href="javascript:void(0)" title="用户信息"
data-container="body" data-toggle="popover" data-placement="bottom"
data-content="底部的 Popover 中的一些内容">
<img src="images/userinfo.png" alt=""/>
</a>
</div>
</div>
<div class="Bcontent">
<div class="left">
<ul class="list-unstyled side-menu" id="imgTab">
<li>
<a class="sa-side-slt" id="text" href="#sCont1" data-toggle="tab" >
<img src="images/leftbtn/leftbtn_view.png" alt="" title="驾驶舱跳转">
</a>
</li>
</ul>
</div>
<div class="right">
<div id="imgTabContent">
<div class="row row-zero">
<div class="col-md-12">
<div class="panel">
<div class="panel-heading bk-bg-primary">
<h6>驾驶仓</h6>
</div>
<div class="panel-body range">
<div id="toolbar1">
<button id="button" class="btn btn-default">新增</button>
</div>
<table id="table"
data-toggle="table"
data-toolbar="#toolbar1"
data-height="360"
data-url="json/table.json"
data-pagination="true"
data-show-columns="true"
>
<thead>
<tr>
<th data-field="name" data-editable="true" data-sortable="true">业务名称</th>
<th data-field="ip" data-editable="true" data-sortable="true">描述</th>
<th data-field="port" data-editable="true" data-sortable="true">创建人</th>
<th data-field="Interval-time" data-editable="true" data-sortable="true">创建时间</th>
<th data-field="pre-Interval-time" data-editable="true" data-sortable="true">修改人</th>
<th data-field="state" data-editable="true" data-sortable="true">修改时间</th>
<th data-formatter="operateFormatter" data-events="operateEvents" data-sortable="true">操作</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="main"></div>
</body>
</html>
<script src="js/jquery-3.2.1.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/changeBackground.js"></script>
<script src="js/bootstrap-table.js"></script>
<script src="js/bootstrap-table-zh-CN.js"></script>
<script src="js/bootstrap-table-export.js"></script>
<script src="js/tableExport.js"></script>
<script src="js/bootstrap-table-editable.js"></script>
<script src="js/bootstrap-editable.js"></script>
<script>
function operateFormatter(value, row, index) {
return [
'<img src="images/edit.png"/>',
'<img src="images/false.png" style="padding-left: 5%;padding-right: 5%;"/>'
].join('')
}
</script>