HnRealNameBmwWeb/pages/work/train/trainList.html

206 lines
11 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">
</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="keyWord" type="text" class="layui-input" placeholder="请输入关键字">
</div>
</div>
<button id="searchBt" class="layui-btn layui-btn-sm"
permission="sys:Blacklist:query" style="margin-top: -0.3%;"><i
class="layui-icon">&#xe615;</i>搜索
</button>
<button class="layui-btn layui-btn-sm" onclick="addCommonProblem()" style="margin-top: -0.3%;">
<i class="layui-icon">&#xe608;</i> 添加
</button>
<input id="articleImageFile" name="excelFile" type="file" class="form-control" style="width: 300px; display: inline;" />
<input id="saveZipButton" type="button" style="width: 60px;height: 35px;" value="导入" />
<input type="file" id="import-excel" name="image" style="display: none;"/>
<button class="layui-btn layui-btn-sm" onclick="downCommonProblem()" style="margin-top: -0.3%;">
<i class="layui-icon">&#xe601;</i> 模板下载
</button>
<button id="exportBt" class="layui-btn layui-btn-sm" ><i class="layui-icon">&#xe681;</i>导出</button>
</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>
</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/train/trainList.js"></script>
<!--
<!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;
}
</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" style="margin-left: -3.5%;">
<label class="layui-form-label">公司:</label>
<div class="layui-input-inline">
<select id="orgId" name="orgId" lay-filter="orgId" lay-search>
</select>
</div>
</div>
<div class="layui-inline" style="margin-left: -2%">
<label class="layui-form-label">工程名称:</label>
<div class="layui-input-inline">
<select id="proId" name="proId" lay-search>
</select>
</div>
</div>
<div class="layui-inline" style="margin-left: -1%">
<label class="layui-form-label">培训状态:</label>
<div class="layui-input-inline">
<select id="trainStatus" name="trainStatus">
<option value="">全部</option>
<option value="1">未完成</option>
<option value="2">完成</option>
</select>
</div>
</div>
<div class="layui-inline" style="margin-left: -2%">
<label class="layui-form-label">考试状态:</label>
<div class="layui-input-inline">
<select id="examStatus" name="examStatus">
<option value="">全部</option>
<option value="1">未考试</option>
<option value="2">合格</option>
<option value="3">不合格</option>
</select>
</div>
</div>
<div class="layui-inline">
<div class="layui-input-inline" style="margin-top: -2%;">
<input id="keyWord" type="text" class="layui-input" placeholder="请输入关键字">
</div>
</div>
<button id="searchBt" class="layui-btn layui-btn-sm"><i class="layui-icon">&#xe615;</i>搜索</button>
</div>
</form>
</td>
</tr>
</table>
</div>
</header>
<div>
<div class="widget-body no-padding">
<table id="dt-table"
class="table table-striped table-bordered table-hover"
style="width: 100%">
<thead>
<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 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/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/work/train/trainList.js"></script>-->