2025-11-27 16:55:35 +08:00
|
|
|
<!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-input-inline">
|
|
|
|
|
<input id="name" type="text" class="layui-input" placeholder="班组/分包/工程">
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="layui-input-inline">
|
|
|
|
|
<select id="teamType" name="teamType">
|
|
|
|
|
<option value="">班组类别</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-12-02 18:30:53 +08:00
|
|
|
<button id="searchBt" class="layui-btn layui-btn-sm" >搜索</button>
|
2025-11-27 16:55:35 +08:00
|
|
|
</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%">
|
2025-12-02 18:30:53 +08:00
|
|
|
<thead style="background-color: #FAFAFA !important;">
|
2025-11-27 16:55:35 +08:00
|
|
|
<tr>
|
|
|
|
|
<th style="width:1%">序号</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.7.1.min.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/basic/teamWorkInfo.js"></script>
|