-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoClockproject.html
96 lines (92 loc) · 3.7 KB
/
autoClockproject.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
<!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%;
}
</style>
<body>
<div id="toolbar">
<div class=" form-inline">
<a type="button" class="btn btn-outline btn-default" data-toggle="modal" id="add-a">
<i class="glyphicon glyphicon-plus" aria-hidden="true"></i>
</a>
</div>
</div>
<table id="table">
</table>
<div id="addModal" class="modal fade " aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<div class="row">
<h3 class="m-t-none m-b">新增自动打卡</h3>
<form id="addForm" role="form">
<div class="form-group">
<label>项目选择:</label>
<select id="projectName" name="projectName" class="form-control" required>
</select>
</div>
<div class="form-group">
<label>进场:</label>
<input type="text" class="form-control" id="signIn_time" placeholder="请选择时间段">
</div>
<div class="form-group">
<label>退场:</label>
<input type="text" class="form-control" id="signOut_time" placeholder="请选择时间段">
</div>
<div>
<button id='add' class="btn btn-sm btn-primary pull-right m-t-n-xs" type="button" ><strong>提交</strong></button>
<button class="btn btn-sm btn-white pull-right m-t-n-xs" type="button" data-toggle="modal" data-target="#addModal" ><strong>取消</strong></button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!--关闭模态框-->
<div id="closeModal" class="modal fade " aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
<h4 class="modal-title">删除</h4>
</div>
<div class="modal-body">
<h3 class="text-center" id="close-prompt"></h3>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
<button type="button" class="btn btn-primary" id="close-confirm-button">确定</button>
</div>
</div>
</div>
</div>
<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/laydate/laydate.js"></script>
<script src="js/public/publicURL.js"></script>
<script src="js/js/autoClockproject.js"></script>
</body>
</html>