-
Notifications
You must be signed in to change notification settings - Fork 0
/
clickTimes.html
117 lines (104 loc) · 3.61 KB
/
clickTimes.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>打卡次数异常信息查询</title>
<link href="css/bootstrap.min14ed.css?v=3.3.6" rel="stylesheet">
<link href="css/font-awesome.min93e3.css?v=4.4.0" rel="stylesheet">
<link href="css/style.min862f.css?v=4.1.0" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap-table.css">
<link rel="stylesheet" href="css/plugins/sweetalert/sweetalert2.css">
</head>
<style>
body{
margin: 5px 5px;
}
button{
margin-left: 2%;
}
.table-bordered > tbody > tr > td
{
border: 1px solid #ffffff00;
}
</style>
<body>
<div
style="border-bottom: 1px solid black;font-size: 18px;font-weight: bold;margin: 0 0 10px 0;padding-bottom: 5px">
打卡次数异常信息查询
</div>
<div id="toolbar" class="container">
<table class="table table-bordered">
<tr>
<td colspan="2">
<div class="form-group">
<label style="font-size: 15px;margin-top: 2px;" class="col-sm-2 control-label">项目名称:</label>
<div class="col-sm-9">
<select type="text" id="projectName" placeholder="" class="form-control">
<option value="">请选择</option>
</select>
</div>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div class="form-group">
<label style="font-size: 15px;margin-top: 2px;" class="col-sm-2 control-label">班组名称:</label>
<div class="col-sm-9">
<select type="text" id="teamName" placeholder="" class="form-control">
<option value="">请选择</option>
</select>
</div>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div class="form-group">
<label style="font-size: 15px;margin-top: 2px;" class="col-sm-2 control-label">起始时间:</label>
<div class="col-sm-9">
<input id="startDate" type="date" class="laydate-icon form-control layer-date">
</div>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div class="form-group">
<label style="font-size: 15px;margin-top: 2px;" class="col-sm-2 control-label">终止时间:</label>
<div class="col-sm-9">
<input id="endDate" type="date" class="laydate-icon form-control layer-date">
</div>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<hr/>
<div id="toolbar">
<div class=" form-inline form-group">
<input type="button" value="查询" class="btn btn-primary col-sm-2 col-sm-offset-1" id="searchButton">
<!-- <a type="button" class="btn btn-outline btn-default col-sm-offset-1" data-toggle="modal" id="add-a">
<i class="glyphicon glyphicon-plus" aria-hidden="true"></i>
</a> -->
</div>
</div>
</td>
</tr>
</table>
</div>
<table id="table">
</table>
<script src="js/jquery.min.js?v=2.1.4"></script>
<script src="js/bootstrap.min.js?v=3.3.6"></script>
<script src="js/bootstrap-table.js"></script>
<script src="js/plugins/bootstrap-table/bootstrap-table-mobile.min.js"></script>
<script src="js/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.min.js"></script>
<script type="text/javascript" src="http://tajs.qq.com/stats?sId=9051096" charset="UTF-8"></script>
<script src="js/plugins/sweetalert/sweetalert2.js"></script>
<script src="js/plugins/validate/jquery.validate.min.js"></script>
<script src="js/plugins/validate/messages_zh.min.js"></script>
<script src="js/js/publicUrl.js"></script>
<script src="js/js/clickTimes.js"></script>
</body>
</html>