-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_log.html
More file actions
74 lines (60 loc) · 2.33 KB
/
get_log.html
File metadata and controls
74 lines (60 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>提取日志</title>
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
<link href="css/bootstrap-responsive.css" rel="stylesheet" media="screen">
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> -->
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="./index.html">A4</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="./audit.html">对账审计</a></li>
<li><a href="./complain.html">处理投诉</a></li>
<li class="active"><a href="./get_log.html">提取日志</a></li>
<li><a href="./inquery.html">查询</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<div class="hero-unit">
<h1>提取日志</h1>
<br />
<p>选择您想要的日期</p>
<p>
<label>
<input type="date" id="log_date"/>
</label>
<button class="btn btn-large btn-primary" type="button" id="log">提交</button>
</p>
<br />
<div id="result">
<table class="table" id="log_table">
</table>
</div>
</div>
</div> <!-- /container -->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/log.js"></script>
<script type="text/javascript">
jQuery('#log').click(function() {
var log_date = jQuery("#log_date").val();
query_log(log_date);
});
</script>
</body></html>