|
|
@@ -5,9 +5,9 @@
|
|
|
<div class="row">
|
|
|
<form class="form-horizontal">
|
|
|
<div class="form-group">
|
|
|
- <label for="exampleInputAccount1" class="col-sm-1">月份</label>
|
|
|
- <div class="col-sm-2">
|
|
|
- <select class="form-control" id="sel_month">
|
|
|
+ <label for="exampleInputAccount1" class="col-sm-1">日期</label>
|
|
|
+ <!--<div class="col-sm-2">-->
|
|
|
+ <!--<select class="form-control" id="sel_month">
|
|
|
<option value="1">一月</option>
|
|
|
<option value="2">二月</option>
|
|
|
<option value="3">三月</option>
|
|
|
@@ -20,8 +20,17 @@
|
|
|
<option value="10">十月</option>
|
|
|
<option value="11">十一月</option>
|
|
|
<option value="12">十二月</option>
|
|
|
- </select>
|
|
|
+ </select>-->
|
|
|
+ <!--</div>-->
|
|
|
+
|
|
|
+ <div class="col-sm-1">
|
|
|
+ <input type="text" id="start-time" class="form-control form-date" placeholder="开始日期">
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-1">
|
|
|
+ <input type="text" id="end-time" class="form-control form-date" placeholder="结束日期">
|
|
|
</div>
|
|
|
+
|
|
|
+
|
|
|
<label for="exampleInputAccount1" class="col-sm-1">部门</label>
|
|
|
<div class="col-sm-2">
|
|
|
<select class="form-control" id="center_manage">
|
|
|
@@ -50,25 +59,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
- <div class="table-title"><span id="month_name"></span><span>份机动人员出勤统计</span></div>
|
|
|
+ <div class="table-title"><span id="month_name"></span><span>机动人员出勤统计</span></div>
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
<div class="table-head" ><table width="100%" min-height="190px" align="center" >
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th rowspan="2" width="80px">序号</th>
|
|
|
- <th rowspan="2" width="120px">站名</th>
|
|
|
- <th rowspan="2" width="120px">姓名</th>
|
|
|
- <th rowspan="2" width="120px">岗位</th>
|
|
|
- <th width="120px" colspan="3">月份出勤统计(上月26 ~ 本月25)</th>
|
|
|
- <th rowspan="2" min-width="120px">合计</th>
|
|
|
- <th rowspan="2" >备注</th>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
+ <th width="80px">序号</th>
|
|
|
+ <th width="120px">站名</th>
|
|
|
+ <th width="120px">姓名</th>
|
|
|
+ <th width="120px">岗位</th>
|
|
|
<th>夜</th>
|
|
|
<th>早</th>
|
|
|
<th>中</th>
|
|
|
+ <th min-width="120px">合计</th>
|
|
|
+ <th >备注</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody class="table-tbody" style="background:white" align="center" height="500px">
|
|
|
@@ -81,6 +87,18 @@
|
|
|
</div>
|
|
|
<script>
|
|
|
$(document).ready(function() {
|
|
|
-
|
|
|
+ // 仅选择日期 开始 ,结束时间
|
|
|
+ $("#start-time,#end-time").datetimepicker(
|
|
|
+ {
|
|
|
+ language: "zh-CN",
|
|
|
+ weekStart: 1,
|
|
|
+ todayBtn: 1,
|
|
|
+ autoclose: 1,
|
|
|
+ todayHighlight: 1,
|
|
|
+ startView: 2,
|
|
|
+ minView: 2,
|
|
|
+ forceParse: 0,
|
|
|
+ format: "yyyy-mm-dd"
|
|
|
+ });
|
|
|
});
|
|
|
</script>
|