114 lines
5.6 KiB
HTML
114 lines
5.6 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/basic.css">
|
|
<style type="text/css">
|
|
.layui-form input[type=checkbox], .layui-form input[type=radio], .layui-form select {
|
|
display: none !important ;
|
|
}
|
|
|
|
.ths{
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12" style="margin-top: 10px;">
|
|
<header style="height: 100%">
|
|
<div align="left">
|
|
<table style="width: 100%">
|
|
<tr>
|
|
<td>
|
|
<form class="form-inline layui-form" onsubmit="return false">
|
|
<div class="layui-inline">
|
|
<div class="layui-input-inline" style="display: flex;align-items: center;">
|
|
<div class="layui-inline">
|
|
<div class="layui-input-inline" style="margin-top: -0.5%;">
|
|
<input id="keyWord" type="text" class="layui-input" placeholder="请输入姓名">
|
|
</div>
|
|
</div>
|
|
<!--<select id="teamId" name="teamId" lay-verify="required" lay-search=""
|
|
lay-filter="teamId">
|
|
</select>-->
|
|
<button id="searchBt" class="layui-btn layui-btn-sm"><i
|
|
class="layui-icon"></i>查询
|
|
</button>
|
|
<button id="addBtn" onclick="download()" class="layui-btn layui-btn-sm">下载</button>
|
|
<p style="margin-left: 16%;font-size: 24px;font-weight:bold">农民工工资支付表</p>
|
|
</div>
|
|
<div>
|
|
<P style="margin-left: 50%;font-size: 16px;" id="years"></P>
|
|
<p style="font-size: 19px;font-weight: bold;" id="proName"></p>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</header>
|
|
<div class="divs" style="margin-top: 3%;">
|
|
<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 colspan="14" style="text-align: left;font-size: 20px;" id="subName"></th>
|
|
</tr>
|
|
<tr>
|
|
<th class="ths">序号</th>
|
|
<th class="ths">姓名</th>
|
|
<th class="ths">身份证号</th>
|
|
<th class="ths">所在班组</th>
|
|
<th class="ths">岗位</th>
|
|
<th class="ths">出勤天数</th>
|
|
<th class="ths">应发工资</th>
|
|
<th class="ths">应发绩效</th>
|
|
<th class="ths">其中代扣/代缴</th>
|
|
<th class="ths">实发工资</th>
|
|
<th class="ths">开户银行(支行)</th>
|
|
<th class="ths">银行卡号</th>
|
|
<!-- <th >工资发放状态</th>-->
|
|
<!-- <th >备注</th>-->
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr>
|
|
<th colspan="5" class="ths">合计</th>
|
|
<th class="ths"></th>
|
|
<th class="ths"></th>
|
|
<th class="ths"></th>
|
|
<th class="ths"></th>
|
|
<th class="ths"></th>
|
|
<th class="ths"></th>
|
|
<th class="ths"></th>
|
|
<!-- <th class="ths"></th>-->
|
|
<!-- <th class="ths"></th>-->
|
|
</tr>
|
|
</tfoot>
|
|
<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>
|
|
<!--引入下拉选js-->
|
|
<script type="text/javascript" src="../../../../js/select.js"></script>
|
|
<script type="text/javascript" src="../../../../js/work/person/reportStatistics/salaryPaymentStatisticsForm.js"></script> |