96 lines
4.9 KiB
HTML
96 lines
4.9 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>
|
|
.layui-form input[type=checkbox], .layui-form input[type=radio], .layui-form select {
|
|
display: inline !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">
|
|
<div class="layui-input-inline" style="display: flex;align-items: center;">
|
|
项目:
|
|
<input id="project" name="project" placeholder="请输入关键字..." lay-verify="required" lay-search="" lay-filter="project" style="height: 26px"/>
|
|
</div>
|
|
</div>
|
|
<div class="layui-inline" style="margin-left: 10px;">
|
|
<div class="layui-input-inline">
|
|
审核结果:
|
|
<select id="releaseStatus" name="releaseStatus" style="height: 26px">
|
|
<option value="">请选择</option>
|
|
<option value="0">待审核</option>
|
|
<option value="1">已通过</option>
|
|
<option value="2">未通过</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<button id="searchBt" style="margin-top: -0.6%;margin-left: 10px;" class="layui-btn layui-btn-sm"
|
|
permission="sys:releaseWorkInfo:query"><i class="layui-icon"></i>搜索
|
|
</button>
|
|
<button class="layui-btn layui-btn-sm" style="margin-top: -0.6%" onclick="addReleaseWorkInfo()">
|
|
<i class="layui-icon"></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>序号</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>
|
|
<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/select.js" ></script>
|
|
<script type="text/javascript" src="../../../js/dict.js"></script>
|
|
<script type="text/javascript" src="../../../js/work/talentTrade/releaseWorkInfo.js"></script> |