98 lines
5.9 KiB
HTML
98 lines
5.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>施工人员考勤打卡</title>
|
|
<link rel="stylesheet" type="text/css" media="screen" href="../../../css/bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" media="screen" href="../../../css/dataTables.bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" media="screen" href="../../../layui/css/layui.css">
|
|
<link rel="stylesheet" type="text/css" media="screen" href="../../../css/work/basic/basic.css">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
|
|
<header style="height: 100%">
|
|
<div align="left">
|
|
<table style="width: 100%">
|
|
<tr>
|
|
<td>
|
|
<form class="layui-form" onsubmit="return false">
|
|
<div class="layui-inline">
|
|
<div class="layui-input-inline" style="display: flex;align-items: center;">
|
|
<input type="text" style="height: 30px;margin: 0px;width:10%;" id="name" name="name" placeholder="请输入姓名" class="form-control">
|
|
<input type="text" style="height: 30px;margin: 0px;width:10%;margin-left: 2px;" id="subName" name="subName" placeholder="输入分包商名称" class="form-control">
|
|
<input type="text" style="height: 30px;margin: 0px;width:10%;margin-left: 2px;" id="teamName" name="teamName" placeholder="请输入班组名称" class="form-control">
|
|
<!-- <select id="orgId" name="orgId" style="margin-left: 2px;" lay-verify="required" lay-search="" lay-filter="orgId" class="form-control input-sm"></select>-->
|
|
<select id="proId" name="proId" class="form-control input-sm" lay-verify="required" lay-search=""></select>
|
|
<select id="status" name="status" class="form-control input-sm">
|
|
<option value="" selected>全部</option>
|
|
<option value="在建">在建</option>
|
|
<option value="已完工">完工</option>
|
|
<option value="已完工">筹备</option>
|
|
<option value="已完工">停工</option>
|
|
</select>
|
|
<input type="text" style="width: 10%;" class="form-control" readonly placeholder="请选择日期" id="startTime">
|
|
<span>~</span>
|
|
<input type="text" style="width: 10%;" class="form-control" readonly placeholder="请选择日期" id="endTime" value='@DateTime.Now.ToString("yyyy-MM-dd")'>
|
|
<button id="searchBt" class="layui-btn layui-btn-sm" permission="sys:faceContrast:query"><i class="layui-icon"></i>搜索</button>
|
|
<button id="exportBt" onclick="exportBtn()" class="layui-btn layui-btn-sm"><i class="layui-icon"></i>导出</button>
|
|
<button id="downloadWork" onclick="downloadWorks()" class="layui-btn layui-btn-sm"><i class="layui-icon"></i>下载</button>
|
|
<input type="hidden" id="hidMinListDate" value="2021-01-01" />
|
|
<input type="hidden" id="hidMaxListDate" value='@DateTime.Now.ToString("yyyy-MM-dd")' />
|
|
|
|
<!-- <button id="ssss" class="">导出</button>-->
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</header>
|
|
|
|
<div>
|
|
<div class="widget-body no-padding">
|
|
<div id="dt-table-length"></div>
|
|
<table id="dt-table" class="table table-striped table-bordered table-hover" style="width:100%">
|
|
<thead>
|
|
<tr>
|
|
<th>序号</th>
|
|
<th>姓名</th>
|
|
<th>身份证号</th>
|
|
<th>工种</th>
|
|
<!-- <th>公司</th>-->
|
|
<th>工程名称</th>
|
|
<th>工程状态</th>
|
|
<th>分包商</th>
|
|
<th>班组</th>
|
|
<!-- <th>考勤总天数</th>-->
|
|
<th>出勤天数</th>
|
|
<th>缺勤天数</th>
|
|
<th>休息天数</th>
|
|
<th>合同定价</th>
|
|
<th>合同绩效</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<script type="text/javascript" src="../../../js/libs/jquery-3.6.0.js"></script>
|
|
<script type="text/javascript" src="../../../js/jq.js"></script>
|
|
<script type="text/javascript" src="../../../js/plugin/datatables/jquery.dataTables.min.js"></script>
|
|
<script type="text/javascript" src="../../../js/plugin/datatables/dataTables.bootstrap.min.js"></script>
|
|
<script type="text/javascript" src="../../../js/my/permission.js"></script>
|
|
<script type="text/javascript" src="../../../layui/layui.js"></script>
|
|
<script type="text/javascript" src="../../../js/publicJs.js"></script>
|
|
<script type="text/javascript" src="../../../js/dict.js"></script>
|
|
<!--引入下拉选js-->
|
|
<script type="text/javascript" src="../../../js/select.js"></script>
|
|
<script type="text/javascript" src="../../../js/work/person/faceContrast.js" defer="defer"></script>
|
|
<script type="text/javascript">
|
|
</script> |