hn_cloud_web/smz-web/pages/work/push/proManagerPush.html

97 lines
5.2 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/push/proManagerPush.css">
<style>
.layui-form input[type=checkbox], .layui-form input[type=radio], .layui-form select {
display: none !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;">
公司:
<select id="orgId" name="orgId" lay-verify="required" lay-search="" lay-filter="orgId"></select>
工程名称:
<select id="proId" name="proId" class="form-control input-sm" lay-verify="required" lay-search=""></select>
</div>
</div>
<div class="layui-inline">
<div class="layui-input-inline" style="width:100px">
<select id="status" name="status">
<option value="">全部</option>
<option value="在建">在建</option>
<option value="完工">完工</option>
<option value="筹建">筹建</option>
<option value="停工">停工</option>
</select>
</div>
</div>
<button id="searchBt" style="margin-top: -0.6%" class="layui-btn layui-btn-sm" permission="sys:project:query">查询</button>
<button class="layui-btn layui-btn-sm" style="margin-top: -0.6%" onclick="batchPush()">批量推送</button>
</div>
</form>
</td>
<!-- <td align="right">-->
<!-- <button class="layui-btn layui-btn-sm" onclick="addPorject()">-->
<!-- <i class="layui-icon">&#xe608;</i> 添加-->
<!-- </button>-->
<!-- </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 class='th'>
<input id="checkall" type="checkbox" class="checkall"/>
</th>
<th>序号</th>
<th>公司名称</th>
<th>工程名称</th>
<th>工程类型</th>
<th>电压等级(kV)</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/dict.js"></script>
<script type="text/javascript" src="../../../js/select.js"></script>
<script type="text/javascript" src="../../../js/work/push/proManagerPush.js"></script>