-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentryOrExitManage.html
190 lines (175 loc) · 6.1 KB
/
entryOrExitManage.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!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">
<select type="text" id="workerIdCardNumber" 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">
<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="type" placeholder="" class="form-control">
<option value="">请选择</option>
<option value="1">进场</option>
<option value="0">退场</option>
</select>
</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>
<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 type="text" id="addProjectName" placeholder="" class="form-control">
<option value="">请选择</option>
</select>
</div>
<div class="form-group">
<label>班组名称:</label>
<select type="text" id="addTeamName" placeholder="" class="form-control">
<option value="">请选择</option>
</select>
</div>
<div class="form-group">
<label>工人姓名:</label>
<select type="text" id="addWorkerIdCardNumber" placeholder="" class="form-control">
<option value="">请选择</option>
</select>
</div>
<div class="form-group">
<label>日期:</label>
<input id="addDate" type="date" class="laydate-icon form-control layer-date">
</div>
</div>
<!-- <div class="form-group">
<label>类型</label>
<input type="radio" name="addType" id="" value="进场" required checked> 进场
<input type="radio" name="addType" id="" value="退场" required> 退场
</div> -->
<div>
<button class="btn btn-sm btn-primary pull-right m-t-n-xs" id="submit" type="button" onclick=""><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>
<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/entryOrExitManage.js"></script>
</body>
</html>