hn_cloud_web/public/html/user.html

82 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>班组管理</title>
<link rel="stylesheet" type="text/css" media="screen" href="../../smz-web/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="../../smz-web/css/dataTables.bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="../../smz-web/layui/css/layui.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">
<input id="keyWord" name="keyWord" type="text" class="layui-input" placeholder="请输入关键字">
</div>
<button id="searchBt" class="layui-btn layui-btn-sm">搜索</button>
</div>
</form>
<div class="layui-inline" style="margin-top: 5px;">
<button class="layui-btn layui-btn-sm" onclick="insertTeamManager()">
添加
</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>序号</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="../../smz-web/js/libs/jquery-3.6.0.js"></script>
<script type="text/javascript" src="../../smz-web/js/plugin/datatables/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="../../smz-web/js/plugin/datatables/dataTables.bootstrap.min.js"></script>
<script type="text/javascript" src="../../smz-web/layui/layui.js"></script>
<script src="../public.js"></script>
<script type="text/javascript" src="../../smz-web/js/dict.js"></script>
<script type="text/javascript" src="../../public/login/js/user.js" ></script>
<script type="text/javascript">
</script>