120 lines
4.3 KiB
Plaintext
120 lines
4.3 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
pageEncoding="UTF-8"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
|
<c:set var="ctx" value="${pageContext.request.contextPath}" />
|
|
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport"
|
|
content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
|
|
<title>新增技术监督事务</title>
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link rel="stylesheet" href="${ctx}/css/plugin/bootstrap/bootstrap.min.css">
|
|
<link rel="stylesheet" href="${ctx}/css/plugin/datatimepicker/bootstrap-datetimepicker.css">
|
|
<link rel="stylesheet" href="${ctx}/css/plugin/fontawesome/font-awesome.min.css">
|
|
<link rel="stylesheet" href="${ctx}/css/plugin/datatables/buttons.dataTables.min.css">
|
|
<link rel="stylesheet" href="${ctx}/css/plugin/datatables/datatables.bootstrap.css">
|
|
<link rel="stylesheet" href="${ctx}/css/basic.css">
|
|
<style type="text/css">
|
|
.table {
|
|
margin-top: -25px;
|
|
}
|
|
|
|
.table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td,
|
|
.table>tfoot>tr>td {
|
|
padding: 5px;
|
|
line-height: 1.42857143;
|
|
vertical-align: top;
|
|
border-top: 1px solid #ddd;
|
|
}
|
|
|
|
@media screen and (min-width: 1200px) and (max-width:1400px) {
|
|
#analyze_filter {
|
|
top: -34px;
|
|
right: -432px;
|
|
}
|
|
}
|
|
|
|
.glyphicon {
|
|
top: 2px;
|
|
left: 2px;
|
|
}
|
|
|
|
.queryButton {
|
|
display: inline-block
|
|
}
|
|
.dataTables_scrollHeadInner{
|
|
width : 100%; !important
|
|
}
|
|
.form-control{
|
|
height: 22px;
|
|
padding: 1px 5px;
|
|
}
|
|
.pagination > li > a, .pagination > li > span {
|
|
padding: 6px 12px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body style="padding: 5px 0px">
|
|
<div class="content_wrapper" style="background-color: #fff;">
|
|
<form id="headform" class="form-inline ml15 header">
|
|
<%@include file="../../include/date.jsp" %>
|
|
<label class="form-group">部门:</label> <select
|
|
class="form-control" id="depts">
|
|
</select>
|
|
<label class="form-group">反馈类型:</label> <select
|
|
class="form-control" id="type">
|
|
<option value="0">预警单</option>
|
|
<option value="1">告警单</option>
|
|
</select>
|
|
<div class="form-inline queryButton">
|
|
<button id="query" type="button" class="btn btn-primary">
|
|
<i class="glyphicon glyphicon-search"></i>
|
|
</button>
|
|
</div>
|
|
<div class="form-inline pdr15 fr">
|
|
<button id="btn_deal" type="button" class="btn themeBGColor">
|
|
<i class="glyphicon glyphicon-plus"></i>生成
|
|
</button>
|
|
</div>
|
|
<div class="form-group fr mr10" id="fliteData">
|
|
<label>筛选数据:</label>
|
|
<input type="text" class="form-control" onkeyup="searchResult(this.value)" placeholder="空格分开多条件筛选数据">
|
|
</div>
|
|
</form>
|
|
<div class="col-sm-12">
|
|
<table id="vdlist" class="table table-striped table-bordered dataTable no-footer width100">
|
|
<thead>
|
|
<tr role="row">
|
|
<th><input type="checkbox" class="icheckbox_minimal" id="all_checked"></th>
|
|
<th class="text-center">供电公司</th>
|
|
<th class="text-center">变电站</th>
|
|
<th class="text-center">监测点</th>
|
|
<th class="text-center">越限次数</th>
|
|
<th class="text-center">描述</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="${ctx}/js/plugin/jquery/jquery.min.js"></script>
|
|
<script src="${ctx}/js/plugin/layui/layer.js"></script>
|
|
<script src="${ctx}/js/plugin/bootstrap/bootstrap-datetimepicker.js"></script>
|
|
<script src="${ctx}/js/plugin/bootstrap/bootstrap-datetimepicker.zh-CN.js"></script>
|
|
<script src="${ctx}/js/plugin/bootstrap/bootstrap.min.js"></script>
|
|
<script src="${ctx}/js/plugin/datatables/datatables.jquery.js"></script>
|
|
<script src="${ctx}/js/plugin/datatables/dataTables.buttons.min.js"></script>
|
|
<script src="${ctx}/js/plugin/datatables/datatables.bootstrap.js"></script>
|
|
<script src="${ctx}/js/plugin/datatables/buttons.html5.min.js"></script>
|
|
<script src="${ctx}/jspJS/utils/timeControl.js"></script>
|
|
<script src="${ctx}/jspJS/utils/loading.js"></script>
|
|
<script src="${ctx}/jspJS/utils/judgeAjaxStatus.js"></script>
|
|
<script src="${ctx}/jspJS/technical/addTechnical.js"></script>
|
|
</body>
|
|
</html> |