hn_cloud_web/smz-web/pages/work/person/accessFieldInfor.html

145 lines
6.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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/proManager.css">
<link rel="stylesheet" type="text/css" media="screen" href="../../../js/jquery/jquery-confirm.css">
<style>
.layui-form input[type=checkbox], .layui-form input[type=radio], .layui-form select {
display: none !important;
}
table.table-bordered.dataTable th, table.table-bordered.dataTable td {
text-align: center;
vertical-align: middle;
}
</style>
</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="form-inline layui-form" onsubmit="return false">
<div class="form-group">
<div class="layui-inline">
<div class="layui-input-inline">
<select id="proId" name="proId" lay-search>
</select>
</div>
<div class="layui-input-inline">
<select id="subId" name="subId" lay-search>
</select>
</div>
<div class="layui-input-inline">
<select id="einStatus" name="einStatus">
<option value="">全部</option>
<option value="1">已入场</option>
<option value="0">已出场</option>
</select>
</div>
<div class="layui-input-inline">
<input id="keyWord" type="text" class="layui-input"
placeholder="请输入关键字">
</div>
</div>
<button id="searchBt" class="layui-btn layui-btn-sm"
permission="sys:accessField:query">搜索
</button>
</div>
</form>
<div class="layui-inline" style="margin-top: 5px;">
<button class="layui-btn layui-btn-sm" id="personOut" onclick="out()"
style="margin-top: -0.3%;">批量出场
</button>
<button id="exportBt" onclick="exportBtnOut()" class="layui-btn layui-btn-sm"
style="margin-top: -0.3%;">导出
</button>
</div>
</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 style="background-color: #FAFAFA !important;">
<tr>
<th class='th'>
<input id="checkall" type="checkbox" class="checkall"/>
</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>
<!-- 模态框Modal -->
<div class="modal fade" id="myModal_edit" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog paidan-modal">
<div class="modal-content" style="width:850px;margin-left:-100px">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
&times;
</button>
<h4 class="modal-title" id="myModalLabel">未导入信息</h4>
</div>
<div class="modal-body" style="padding:25px 15px 0;">
<h3 style="font-size:15px;margin-bottom: 10px;">具体信息</h3>
<div class="table-responsive" id="tableAjax">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
</div>
</div>
</div>
</div>
<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>
<script type="text/javascript" src="../../../js/select.js"></script>
<script type="text/javascript" src="../../../js/jquery/jquery-confirm.js"></script>
<script type="text/javascript" src="../../../js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="../../../js/commonsystem.js"></script>
<script type="text/javascript" src="../../../js/work/person/accessFieldInfor.js" defer="defer"></script>