log.html
1.3 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
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head th:include="include :: header"></head>
<body class="gray-bg">
<div class="wrapper wrapper-content animated fadeInRight">
<div class="col-sm-12">
<div class="ibox">
<div class="ibox-body">
<div class="fixed-table-toolbar">
<div class="columns pull-left">
<button type="button" class="btn btn-danger"
onclick="batchRemove()">
<i class="fa fa-trash" aria-hidden="true"></i>删除
</button>
</div>
<div class="columns pull-right" role="group">
<button class="btn btn-success" onclick="reLoad()">
<i class="fa fa-search" aria-hidden="true"></i>查询
</button>
</div>
<div class="pull-right search col-md-2">
<input id="searchOperation" type="text" class="form-control"
placeholder="操作">
</div>
<div class="pull-right search col-md-2 nopadding">
<input id="searchUsername" type="text" class="form-control"
placeholder="用户">
</div>
</div>
<table id="exampleTable" data-mobile-responsive="true">
</table>
</div>
</div>
</div>
</div>
<div th:include="include :: footer"></div>
<script type="text/javascript" src="/js/appjs/common/log/log.js"></script>
</body>
</html>