100 lines
4.7 KiB
HTML
100 lines
4.7 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>
|
||
|
|
.layui-form input[type=checkbox], .layui-form input[type=radio], .layui-form select {
|
||
|
|
display: none !important ;
|
||
|
|
}
|
||
|
|
.layui-inline, .layui-input-inline {
|
||
|
|
height: 30px;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
</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" style="width: 100%;">
|
||
|
|
<div class="layui-inline" >
|
||
|
|
<div class="layui-input-inline">
|
||
|
|
分包商名称:
|
||
|
|
<input id="subName" type="text" class="form-control" placeholder="请输入分包商名称">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="layui-inline" >
|
||
|
|
<div class="layui-input-inline" >
|
||
|
|
法定代表人:
|
||
|
|
<input id="represent" type="text" class="form-control" placeholder="请输入法定代表人">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<button id="searchBt" class="layui-btn layui-btn-sm" permission="sys:SubContractor:query"><i class="layui-icon"></i>搜索</button>
|
||
|
|
<button class="layui-btn layui-btn-sm" onclick="insertSubcontractor()" permission="sys:SubContractor:query">
|
||
|
|
<i class="layui-icon"></i> 添加
|
||
|
|
</button>
|
||
|
|
</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%">
|
||
|
|
<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>
|
||
|
|
<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.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/basic/SubContractor.js"></script>
|
||
|
|
<script type="text/javascript">
|
||
|
|
</script>
|