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

96 lines
3.3 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/proManager.css">
<style>
/*水平居中 加 垂直居中*/
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">
<input id="name" type="text" class="layui-input"placeholder="请输入姓名">
</div>
<div class="layui-input-inline">
<input id="idNumber"type="text" class="layui-input" placeholder="请输入身份证" maxlength="18">
</div>
<div class="layui-input-inline">
<input id="phone"type="text" class="layui-input" placeholder="请输入手机号" maxlength="11">
</div>
</div>
<button id="searchBt" class="layui-btn layui-btn-sm" >搜索</button>
</div>
</form>
<div class="layui-inline" style="margin-top: 5px;">
<button id="exportBt" onclick="exportBtnOutBase()" class="layui-btn layui-btn-sm">导出</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 style="width:1%">序号</th>
<th>姓名</th>
<th>身份证号</th>
<th>性别</th>
<th>民族</th>
<th>出生日期</th>
<th>签发机关</th>
<th>身份证有效日期</th>
<th>住址</th>
<th>联系方式</th>
<th>照片数量</th>
<th style="width:11%">操作</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>
<script type="text/javascript" src="../../../js/work/person/baseManager.js"></script>
<script type="text/javascript">
</script>