-
Notifications
You must be signed in to change notification settings - Fork 0
/
linkClockRecordQuery.html
81 lines (68 loc) · 2.56 KB
/
linkClockRecordQuery.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
<!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: 10px 5px;
}
button {
margin-left: 2%;
}
div {
margin: 0 0 20px 0;
}
</style>
<body>
<div class="form-group">
<label style="font-size: 15px;margin-top: 8px;" class="col-sm-2 control-label">项目名称:</label>
<div class="col-sm-9">
<select id="project" type="text" placeholder="" class="form-control">
</select>
</div>
</div>
<div class="form-group manager_login">
<label style="font-size: 15px;margin-top: 8px;" class="col-sm-2 control-label">班组名称:</label>
<div class="col-sm-9">
<select id="team" type="text" placeholder="" class="form-control">
</select>
</div>
</div>
<div class="form-group">
<label style="font-size: 15px;margin-top: 8px;" class="col-sm-2 control-label">开始日期:</label>
<div class="col-sm-9">
<input id="startDate" type="date" name="date" class="form-control" required>
</div>
</div>
<div class="form-group">
<label style="font-size: 15px;margin-top: 8px;" class="col-sm-2 control-label">结束日期:</label>
<div class="col-sm-9">
<input id="endDate" type="date" name="date" class="form-control" required>
</div>
</div>
<div class="form-group">
<div class="col-sm-11">
<button type="button" id="query" class="btn btn-block btn-outline btn-primary">查询</button>
</div>
</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/public/publicURL.js"></script>
<script src="js/js/linkClockRecordQuery.js"></script>
</body>
</html>