101 lines
4.8 KiB
HTML
101 lines
4.8 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" onsubmit="return false">
|
|
<div class="form-group">
|
|
<input id="keyWord" name="keyWord" type="text" class="form-control" placeholder="搜索关键词">
|
|
<input name="month" type="text" class="form-control" id="month" autocomplete="off"
|
|
placeholder="选择月份范围">
|
|
|
|
<div class="layui-input-inline">
|
|
<select id="state" class="form-control" name="state">
|
|
<option value="">核定结果审核状态</option>
|
|
<option value="0">待提交</option>
|
|
<option value="1">待确认</option>
|
|
<option value="2">已驳回</option>
|
|
<option value="3">已确认</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="layui-input-inline">
|
|
<select id="status" class="form-control" name="status">
|
|
<option value="">流程状态</option>
|
|
<option value="1">进行中</option>
|
|
<option value="2">完结</option>
|
|
</select>
|
|
</div>
|
|
<button id="searchBt" class="layui-btn layui-btn-sm"><i
|
|
class="layui-icon"></i>搜索
|
|
</button>
|
|
<button class="layui-btn layui-btn-sm" onclick="addFeaturesInfo()">
|
|
<i class="layui-icon"></i> 新建
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</td>
|
|
<td align="right">
|
|
<button class="layui-btn layui-btn-sm" onclick="processView()">
|
|
查看流程
|
|
</button>
|
|
</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 style="width:1%">序号</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/uploadResults/uploadResultsList.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
</script> |