测试页面修改
This commit is contained in:
@@ -10,6 +10,8 @@ package com.nis.domain.log;
|
|||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
|
||||||
|
import com.nis.domain.BaseEntity;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ClassName: SearchReport.java
|
* @ClassName: SearchReport.java
|
||||||
* @Description: TODO
|
* @Description: TODO
|
||||||
@@ -17,7 +19,17 @@ import java.util.HashMap;
|
|||||||
* @date 2018年7月5日 下午12:30:44
|
* @date 2018年7月5日 下午12:30:44
|
||||||
* @version V1.0
|
* @version V1.0
|
||||||
*/
|
*/
|
||||||
public class SearchReport {
|
public class SearchReport extends BaseEntity<SearchReport>{
|
||||||
|
/**
|
||||||
|
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||||
|
*
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
private Integer functionId;
|
||||||
|
private String cfgName;
|
||||||
|
private Integer action;
|
||||||
private String searchBusinessType;
|
private String searchBusinessType;
|
||||||
private String searchReportStartTime;
|
private String searchReportStartTime;
|
||||||
private String searchReportEndTime;
|
private String searchReportEndTime;
|
||||||
@@ -25,6 +37,48 @@ public class SearchReport {
|
|||||||
private HashMap<String,Object> searchCondition;
|
private HashMap<String,Object> searchCondition;
|
||||||
public static final String searchConditionSplitor=",";
|
public static final String searchConditionSplitor=",";
|
||||||
public int searchConditionLimit;
|
public int searchConditionLimit;
|
||||||
|
/**
|
||||||
|
* functionId
|
||||||
|
* @return functionId
|
||||||
|
*/
|
||||||
|
|
||||||
|
public Integer getFunctionId() {
|
||||||
|
return functionId;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param functionId the functionId to set
|
||||||
|
*/
|
||||||
|
public void setFunctionId(Integer functionId) {
|
||||||
|
this.functionId = functionId;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* cfgName
|
||||||
|
* @return cfgName
|
||||||
|
*/
|
||||||
|
|
||||||
|
public String getCfgName() {
|
||||||
|
return cfgName;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param cfgName the cfgName to set
|
||||||
|
*/
|
||||||
|
public void setCfgName(String cfgName) {
|
||||||
|
this.cfgName = cfgName;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* action
|
||||||
|
* @return action
|
||||||
|
*/
|
||||||
|
|
||||||
|
public Integer getAction() {
|
||||||
|
return action;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param action the action to set
|
||||||
|
*/
|
||||||
|
public void setAction(Integer action) {
|
||||||
|
this.action = action;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* searchBusinessType
|
* searchBusinessType
|
||||||
* @return searchBusinessType
|
* @return searchBusinessType
|
||||||
|
|||||||
29
src/main/java/com/nis/web/controller/report/TestBean.java
Normal file
29
src/main/java/com/nis/web/controller/report/TestBean.java
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
/**
|
||||||
|
*@Title: TestBean.java
|
||||||
|
*@Package com.nis.web.controller.report
|
||||||
|
*@Description TODO
|
||||||
|
*@author dell
|
||||||
|
*@date 2018年7月6日 上午9:20:48
|
||||||
|
*@version 版本号
|
||||||
|
*/
|
||||||
|
package com.nis.web.controller.report;
|
||||||
|
|
||||||
|
import com.nis.domain.log.BaseReportLog;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ClassName: TestBean.java
|
||||||
|
* @Description: TODO
|
||||||
|
* @author (dell)
|
||||||
|
* @date 2018年7月6日 上午9:20:48
|
||||||
|
* @version V1.0
|
||||||
|
*/
|
||||||
|
public class TestBean extends BaseReportLog<TestBean> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||||
|
*
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -8794587413327741665L;
|
||||||
|
}
|
||||||
@@ -11,10 +11,8 @@ import org.springframework.ui.Model;
|
|||||||
import org.springframework.web.bind.annotation.ModelAttribute;
|
import org.springframework.web.bind.annotation.ModelAttribute;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
|
||||||
import com.mysql.fabric.xmlrpc.base.Array;
|
|
||||||
import com.nis.domain.Page;
|
import com.nis.domain.Page;
|
||||||
import com.nis.domain.configuration.IpPortCfg;
|
import com.nis.domain.log.SearchReport;
|
||||||
import com.nis.domain.log.NtcDnsLog;
|
|
||||||
import com.nis.web.controller.BaseController;
|
import com.nis.web.controller.BaseController;
|
||||||
|
|
||||||
@Controller
|
@Controller
|
||||||
@@ -22,12 +20,13 @@ import com.nis.web.controller.BaseController;
|
|||||||
public class TestController extends BaseController {
|
public class TestController extends BaseController {
|
||||||
|
|
||||||
@RequestMapping("list")
|
@RequestMapping("list")
|
||||||
public String list(@ModelAttribute("cfg") IpPortCfg cfg,Model model, HttpServletRequest request, HttpServletResponse response) {
|
public String list(@ModelAttribute("bean") SearchReport bean,Model model, HttpServletRequest request, HttpServletResponse response) {
|
||||||
Page<IpPortCfg> page=new Page<IpPortCfg>(request, response);
|
Page<TestBean> page=new Page<TestBean>(request, response);
|
||||||
List<IpPortCfg> list=new ArrayList();
|
List<TestBean> list=new ArrayList<>();
|
||||||
list.add(new IpPortCfg());
|
list.add(new TestBean());
|
||||||
page.setList(list);
|
page.setList(list);
|
||||||
model.addAttribute("page", page);
|
model.addAttribute("page", page);
|
||||||
|
model.addAttribute("bean", bean);
|
||||||
return "/report/test";
|
return "/report/test";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
42
src/main/webapp/WEB-INF/views/report/attrType.jsp
Normal file
42
src/main/webapp/WEB-INF/views/report/attrType.jsp
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<%@ page contentType="text/html;charset=UTF-8"%>
|
||||||
|
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div id="attrType" class="tab-pane fade">
|
||||||
|
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>性质</th>
|
||||||
|
<th>总量</th>
|
||||||
|
<th>0点</th>
|
||||||
|
<th>1点</th>
|
||||||
|
<th>2点</th>
|
||||||
|
<th>3点</th>
|
||||||
|
<th>4点</th>
|
||||||
|
<th>5点</th>
|
||||||
|
<th>6点</th>
|
||||||
|
<th>7点</th>
|
||||||
|
<th>8点</th>
|
||||||
|
<th>9点</th>
|
||||||
|
<th>10点</th>
|
||||||
|
<th>11点</th>
|
||||||
|
<th>12点</th>
|
||||||
|
<th>14点</th>
|
||||||
|
<th>15点</th>
|
||||||
|
<th>16点</th>
|
||||||
|
<th>17点</th>
|
||||||
|
<th>18点</th>
|
||||||
|
<th>19点</th>
|
||||||
|
<th>20点</th>
|
||||||
|
<th>21点</th>
|
||||||
|
<th>22点</th>
|
||||||
|
<th>23点</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="page">${page}</div>
|
||||||
|
</div>
|
||||||
42
src/main/webapp/WEB-INF/views/report/destIp.jsp
Normal file
42
src/main/webapp/WEB-INF/views/report/destIp.jsp
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<%@ page contentType="text/html;charset=UTF-8"%>
|
||||||
|
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div id="destIp" class="tab-pane fade">
|
||||||
|
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>所属国家</th>
|
||||||
|
<th>总量</th>
|
||||||
|
<th>0点</th>
|
||||||
|
<th>1点</th>
|
||||||
|
<th>2点</th>
|
||||||
|
<th>3点</th>
|
||||||
|
<th>4点</th>
|
||||||
|
<th>5点</th>
|
||||||
|
<th>6点</th>
|
||||||
|
<th>7点</th>
|
||||||
|
<th>8点</th>
|
||||||
|
<th>9点</th>
|
||||||
|
<th>10点</th>
|
||||||
|
<th>11点</th>
|
||||||
|
<th>12点</th>
|
||||||
|
<th>14点</th>
|
||||||
|
<th>15点</th>
|
||||||
|
<th>16点</th>
|
||||||
|
<th>17点</th>
|
||||||
|
<th>18点</th>
|
||||||
|
<th>19点</th>
|
||||||
|
<th>20点</th>
|
||||||
|
<th>21点</th>
|
||||||
|
<th>22点</th>
|
||||||
|
<th>23点</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="page">${page}</div>
|
||||||
|
</div>
|
||||||
42
src/main/webapp/WEB-INF/views/report/entranceId.jsp
Normal file
42
src/main/webapp/WEB-INF/views/report/entranceId.jsp
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<%@ page contentType="text/html;charset=UTF-8"%>
|
||||||
|
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div id="entranceId" class="tab-pane fade">
|
||||||
|
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>局点</th>
|
||||||
|
<th>总量</th>
|
||||||
|
<th>0点</th>
|
||||||
|
<th>1点</th>
|
||||||
|
<th>2点</th>
|
||||||
|
<th>3点</th>
|
||||||
|
<th>4点</th>
|
||||||
|
<th>5点</th>
|
||||||
|
<th>6点</th>
|
||||||
|
<th>7点</th>
|
||||||
|
<th>8点</th>
|
||||||
|
<th>9点</th>
|
||||||
|
<th>10点</th>
|
||||||
|
<th>11点</th>
|
||||||
|
<th>12点</th>
|
||||||
|
<th>14点</th>
|
||||||
|
<th>15点</th>
|
||||||
|
<th>16点</th>
|
||||||
|
<th>17点</th>
|
||||||
|
<th>18点</th>
|
||||||
|
<th>19点</th>
|
||||||
|
<th>20点</th>
|
||||||
|
<th>21点</th>
|
||||||
|
<th>22点</th>
|
||||||
|
<th>23点</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="page">${page}</div>
|
||||||
|
</div>
|
||||||
42
src/main/webapp/WEB-INF/views/report/label.jsp
Normal file
42
src/main/webapp/WEB-INF/views/report/label.jsp
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<%@ page contentType="text/html;charset=UTF-8"%>
|
||||||
|
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div id="label" class="tab-pane fade in active">
|
||||||
|
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>标签</th>
|
||||||
|
<th>总量</th>
|
||||||
|
<th>0点</th>
|
||||||
|
<th>1点</th>
|
||||||
|
<th>2点</th>
|
||||||
|
<th>3点</th>
|
||||||
|
<th>4点</th>
|
||||||
|
<th>5点</th>
|
||||||
|
<th>6点</th>
|
||||||
|
<th>7点</th>
|
||||||
|
<th>8点</th>
|
||||||
|
<th>9点</th>
|
||||||
|
<th>10点</th>
|
||||||
|
<th>11点</th>
|
||||||
|
<th>12点</th>
|
||||||
|
<th>14点</th>
|
||||||
|
<th>15点</th>
|
||||||
|
<th>16点</th>
|
||||||
|
<th>17点</th>
|
||||||
|
<th>18点</th>
|
||||||
|
<th>19点</th>
|
||||||
|
<th>20点</th>
|
||||||
|
<th>21点</th>
|
||||||
|
<th>22点</th>
|
||||||
|
<th>23点</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="page">${page}</div>
|
||||||
|
</div>
|
||||||
42
src/main/webapp/WEB-INF/views/report/lwhh.jsp
Normal file
42
src/main/webapp/WEB-INF/views/report/lwhh.jsp
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<%@ page contentType="text/html;charset=UTF-8"%>
|
||||||
|
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div id="lwhh" class="tab-pane fade">
|
||||||
|
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>性质</th>
|
||||||
|
<th>总量</th>
|
||||||
|
<th>0点</th>
|
||||||
|
<th>1点</th>
|
||||||
|
<th>2点</th>
|
||||||
|
<th>3点</th>
|
||||||
|
<th>4点</th>
|
||||||
|
<th>5点</th>
|
||||||
|
<th>6点</th>
|
||||||
|
<th>7点</th>
|
||||||
|
<th>8点</th>
|
||||||
|
<th>9点</th>
|
||||||
|
<th>10点</th>
|
||||||
|
<th>11点</th>
|
||||||
|
<th>12点</th>
|
||||||
|
<th>14点</th>
|
||||||
|
<th>15点</th>
|
||||||
|
<th>16点</th>
|
||||||
|
<th>17点</th>
|
||||||
|
<th>18点</th>
|
||||||
|
<th>19点</th>
|
||||||
|
<th>20点</th>
|
||||||
|
<th>21点</th>
|
||||||
|
<th>22点</th>
|
||||||
|
<th>23点</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="page">${page}</div>
|
||||||
|
</div>
|
||||||
43
src/main/webapp/WEB-INF/views/report/srcIp.jsp
Normal file
43
src/main/webapp/WEB-INF/views/report/srcIp.jsp
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<%@ page contentType="text/html;charset=UTF-8"%>
|
||||||
|
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div id="srcIp" class="tab-pane fade">
|
||||||
|
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>所属省</th>
|
||||||
|
<th>所属市</th>
|
||||||
|
<th>总量</th>
|
||||||
|
<th>0点</th>
|
||||||
|
<th>1点</th>
|
||||||
|
<th>2点</th>
|
||||||
|
<th>3点</th>
|
||||||
|
<th>4点</th>
|
||||||
|
<th>5点</th>
|
||||||
|
<th>6点</th>
|
||||||
|
<th>7点</th>
|
||||||
|
<th>8点</th>
|
||||||
|
<th>9点</th>
|
||||||
|
<th>10点</th>
|
||||||
|
<th>11点</th>
|
||||||
|
<th>12点</th>
|
||||||
|
<th>14点</th>
|
||||||
|
<th>15点</th>
|
||||||
|
<th>16点</th>
|
||||||
|
<th>17点</th>
|
||||||
|
<th>18点</th>
|
||||||
|
<th>19点</th>
|
||||||
|
<th>20点</th>
|
||||||
|
<th>21点</th>
|
||||||
|
<th>22点</th>
|
||||||
|
<th>23点</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="page">${page}</div>
|
||||||
|
</div>
|
||||||
@@ -2,31 +2,11 @@
|
|||||||
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title><spring:message code="test"></spring:message></title>
|
<title><spring:message code="${bean.cfgName}"></spring:message></title>
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
//搜索框提示语初始化
|
|
||||||
if("${cfg.srcIpAddress}"){
|
|
||||||
$("#intype").val("${cfg.srcIpAddress}");
|
|
||||||
} else if("${cfg.destIpAddress}"){
|
|
||||||
$("#intype").val("${cfg.destIpAddress}");
|
|
||||||
} else if("${cfg.srcPort}"){
|
|
||||||
$("#intype").val("${cfg.srcPort}");
|
|
||||||
} else if("${cfg.destPort}"){
|
|
||||||
$("#intype").val("${cfg.destPort}");
|
|
||||||
} else if("${cfg.cfgDesc}"){
|
|
||||||
$("#intype").val("${cfg.cfgDesc}");
|
|
||||||
} else{
|
|
||||||
$("#intype").attr("placeholder","<spring:message code='input'/> "+$("#seltype").find("option:selected").text());
|
|
||||||
}
|
|
||||||
$("#seltype").change(function(){
|
|
||||||
$("#intype").attr("placeholder","<spring:message code='input'/> "+$(this).find("option:selected").text());
|
|
||||||
});
|
|
||||||
//筛选功能初始化
|
//筛选功能初始化
|
||||||
filterActionInit();
|
filterActionInit();
|
||||||
$("#isAudit").change(function(){
|
|
||||||
page();
|
|
||||||
});
|
|
||||||
//reset
|
//reset
|
||||||
$("#resetBtn").on("click",function(){
|
$("#resetBtn").on("click",function(){
|
||||||
$("select.selectpicker").each(function(){
|
$("select.selectpicker").each(function(){
|
||||||
@@ -51,7 +31,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<h3 class="page-title">
|
<h3 class="page-title">
|
||||||
<spring:message code="test"></spring:message>
|
<spring:message code="${bean.cfgName}"></spring:message>
|
||||||
<small><spring:message code="report_list"/></small>
|
<small><spring:message code="report_list"/></small>
|
||||||
</h3>
|
</h3>
|
||||||
<h5 class="page-header"></h5>
|
<h5 class="page-header"></h5>
|
||||||
@@ -60,15 +40,15 @@
|
|||||||
<div class="portlet">
|
<div class="portlet">
|
||||||
<div class="portlet-body">
|
<div class="portlet-body">
|
||||||
<div class="row" >
|
<div class="row" >
|
||||||
<form:form id="searchForm" modelAttribute="cfg" action="${ctx}/report/test/list" method="post" class="form-search">
|
<form:form id="searchForm" modelAttribute="bean" action="${ctx}/report/test/list" method="post" class="form-search">
|
||||||
<input id="functionId" name="functionId" type="hidden" value="${cfg.functionId}"/>
|
<input id="functionId" name="functionId" type="hidden" value="${bean.functionId}"/>
|
||||||
<input name="cfgName" type="hidden" value="${cfgName}"/>
|
<input name="cfgName" type="hidden" value="${bean.cfgName}"/>
|
||||||
<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
|
<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
|
||||||
<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
|
<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
|
||||||
<sys:tableSort id="orderBy" name="orderBy" value="${page.orderBy}"
|
<sys:tableSort id="orderBy" name="orderBy" value="${page.orderBy}"
|
||||||
callback="page();" />
|
callback="page();" />
|
||||||
<!-- 筛选按钮展开状态-->
|
<!-- 筛选按钮展开状态-->
|
||||||
<input id="isFilterAction" name="isFilterAction" type="hidden" value="${cfg.isFilterAction }"/>
|
<input id="isFilterAction" name="isFilterAction" type="hidden" value="${bean.isFilterAction }"/>
|
||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
@@ -84,8 +64,8 @@
|
|||||||
<div class="input-group-btn">
|
<div class="input-group-btn">
|
||||||
<span class="form-control" ><spring:message code="begin_date"/></span>
|
<span class="form-control" ><spring:message code="begin_date"/></span>
|
||||||
</div>
|
</div>
|
||||||
<input name="search_audit_time_start" type="text" readonly="readonly" maxlength="20" class="form-control Wdate input-medium"
|
<input name="searchReportStartTime" type="text" readonly="readonly" maxlength="20" class="form-control Wdate input-medium"
|
||||||
value="${cfg.search_audit_time_start}" onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',isShowClear:true});"/>
|
value="${bean.searchReportStartTime}" onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',isShowClear:true});"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
@@ -93,8 +73,8 @@
|
|||||||
<div class="input-group-btn">
|
<div class="input-group-btn">
|
||||||
<span class="form-control" ><spring:message code="end_date"/></span>
|
<span class="form-control" ><spring:message code="end_date"/></span>
|
||||||
</div>
|
</div>
|
||||||
<input name="search_audit_time_end" type="text" readonly="readonly" maxlength="20" class="form-control Wdate input-medium"
|
<input name="searchReportEndTime" type="text" readonly="readonly" maxlength="20" class="form-control Wdate input-medium"
|
||||||
value="${cfg.search_audit_time_end}" onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',isShowClear:true});"/>
|
value="${cfg.searchReportEndTime}" onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',isShowClear:true});"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
@@ -132,271 +112,12 @@
|
|||||||
<li><a data-toggle="tab" href="#entranceId">运营商局点</a></li>
|
<li><a data-toggle="tab" href="#entranceId">运营商局点</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
<%-- <div id="serviceType" class="tab-pane fade">
|
<%@include file="/WEB-INF/views/report/label.jsp" %>
|
||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap">
|
<%@include file="/WEB-INF/views/report/attrType.jsp" %>
|
||||||
<thead>
|
<%@include file="/WEB-INF/views/report/lwhh.jsp" %>
|
||||||
<tr>
|
<%@include file="/WEB-INF/views/report/srcIp.jsp" %>
|
||||||
<th>时间</th>
|
<%@include file="/WEB-INF/views/report/destIp.jsp" %>
|
||||||
<th>数量</th>
|
<%@include file="/WEB-INF/views/report/entranceId.jsp" %>
|
||||||
<th>业务类型</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>2018-07-05 15:00</td>
|
|
||||||
<td>1</td>
|
|
||||||
<td>1</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="page">${page}</div>
|
|
||||||
</div> --%>
|
|
||||||
<div id="label" class="tab-pane fade in active">
|
|
||||||
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>标签</th>
|
|
||||||
<th>0点</th>
|
|
||||||
<th>1点</th>
|
|
||||||
<th>2点</th>
|
|
||||||
<th>3点</th>
|
|
||||||
<th>4点</th>
|
|
||||||
<th>5点</th>
|
|
||||||
<th>6点</th>
|
|
||||||
<th>7点</th>
|
|
||||||
<th>8点</th>
|
|
||||||
<th>9点</th>
|
|
||||||
<th>10点</th>
|
|
||||||
<th>11点</th>
|
|
||||||
<th>12点</th>
|
|
||||||
<th>14点</th>
|
|
||||||
<th>15点</th>
|
|
||||||
<th>16点</th>
|
|
||||||
<th>17点</th>
|
|
||||||
<th>18点</th>
|
|
||||||
<th>19点</th>
|
|
||||||
<th>20点</th>
|
|
||||||
<th>21点</th>
|
|
||||||
<th>22点</th>
|
|
||||||
<th>23点</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="page">${page}</div>
|
|
||||||
</div>
|
|
||||||
<div id="attrType" class="tab-pane fade">
|
|
||||||
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>性质</th>
|
|
||||||
<th>0点</th>
|
|
||||||
<th>1点</th>
|
|
||||||
<th>2点</th>
|
|
||||||
<th>3点</th>
|
|
||||||
<th>4点</th>
|
|
||||||
<th>5点</th>
|
|
||||||
<th>6点</th>
|
|
||||||
<th>7点</th>
|
|
||||||
<th>8点</th>
|
|
||||||
<th>9点</th>
|
|
||||||
<th>10点</th>
|
|
||||||
<th>11点</th>
|
|
||||||
<th>12点</th>
|
|
||||||
<th>14点</th>
|
|
||||||
<th>15点</th>
|
|
||||||
<th>16点</th>
|
|
||||||
<th>17点</th>
|
|
||||||
<th>18点</th>
|
|
||||||
<th>19点</th>
|
|
||||||
<th>20点</th>
|
|
||||||
<th>21点</th>
|
|
||||||
<th>22点</th>
|
|
||||||
<th>23点</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="page">${page}</div>
|
|
||||||
</div>
|
|
||||||
<div id="attribute" class="tab-pane fade">
|
|
||||||
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>来文函号</th>
|
|
||||||
<th>0点</th>
|
|
||||||
<th>1点</th>
|
|
||||||
<th>2点</th>
|
|
||||||
<th>3点</th>
|
|
||||||
<th>4点</th>
|
|
||||||
<th>5点</th>
|
|
||||||
<th>6点</th>
|
|
||||||
<th>7点</th>
|
|
||||||
<th>8点</th>
|
|
||||||
<th>9点</th>
|
|
||||||
<th>10点</th>
|
|
||||||
<th>11点</th>
|
|
||||||
<th>12点</th>
|
|
||||||
<th>14点</th>
|
|
||||||
<th>15点</th>
|
|
||||||
<th>16点</th>
|
|
||||||
<th>17点</th>
|
|
||||||
<th>18点</th>
|
|
||||||
<th>19点</th>
|
|
||||||
<th>20点</th>
|
|
||||||
<th>21点</th>
|
|
||||||
<th>22点</th>
|
|
||||||
<th>23点</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="page">${page}</div>
|
|
||||||
</div>
|
|
||||||
<div id="lwhh" class="tab-pane fade">
|
|
||||||
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>性质</th>
|
|
||||||
<th>0点</th>
|
|
||||||
<th>1点</th>
|
|
||||||
<th>2点</th>
|
|
||||||
<th>3点</th>
|
|
||||||
<th>4点</th>
|
|
||||||
<th>5点</th>
|
|
||||||
<th>6点</th>
|
|
||||||
<th>7点</th>
|
|
||||||
<th>8点</th>
|
|
||||||
<th>9点</th>
|
|
||||||
<th>10点</th>
|
|
||||||
<th>11点</th>
|
|
||||||
<th>12点</th>
|
|
||||||
<th>14点</th>
|
|
||||||
<th>15点</th>
|
|
||||||
<th>16点</th>
|
|
||||||
<th>17点</th>
|
|
||||||
<th>18点</th>
|
|
||||||
<th>19点</th>
|
|
||||||
<th>20点</th>
|
|
||||||
<th>21点</th>
|
|
||||||
<th>22点</th>
|
|
||||||
<th>23点</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="page">${page}</div>
|
|
||||||
</div>
|
|
||||||
<div id="srcIp" class="tab-pane fade">
|
|
||||||
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>所属省</th>
|
|
||||||
<th>所属市</th>
|
|
||||||
<th>0点</th>
|
|
||||||
<th>1点</th>
|
|
||||||
<th>2点</th>
|
|
||||||
<th>3点</th>
|
|
||||||
<th>4点</th>
|
|
||||||
<th>5点</th>
|
|
||||||
<th>6点</th>
|
|
||||||
<th>7点</th>
|
|
||||||
<th>8点</th>
|
|
||||||
<th>9点</th>
|
|
||||||
<th>10点</th>
|
|
||||||
<th>11点</th>
|
|
||||||
<th>12点</th>
|
|
||||||
<th>14点</th>
|
|
||||||
<th>15点</th>
|
|
||||||
<th>16点</th>
|
|
||||||
<th>17点</th>
|
|
||||||
<th>18点</th>
|
|
||||||
<th>19点</th>
|
|
||||||
<th>20点</th>
|
|
||||||
<th>21点</th>
|
|
||||||
<th>22点</th>
|
|
||||||
<th>23点</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="page">${page}</div>
|
|
||||||
</div>
|
|
||||||
<div id="destIp" class="tab-pane fade">
|
|
||||||
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>所属国家</th>
|
|
||||||
<th>0点</th>
|
|
||||||
<th>1点</th>
|
|
||||||
<th>2点</th>
|
|
||||||
<th>3点</th>
|
|
||||||
<th>4点</th>
|
|
||||||
<th>5点</th>
|
|
||||||
<th>6点</th>
|
|
||||||
<th>7点</th>
|
|
||||||
<th>8点</th>
|
|
||||||
<th>9点</th>
|
|
||||||
<th>10点</th>
|
|
||||||
<th>11点</th>
|
|
||||||
<th>12点</th>
|
|
||||||
<th>14点</th>
|
|
||||||
<th>15点</th>
|
|
||||||
<th>16点</th>
|
|
||||||
<th>17点</th>
|
|
||||||
<th>18点</th>
|
|
||||||
<th>19点</th>
|
|
||||||
<th>20点</th>
|
|
||||||
<th>21点</th>
|
|
||||||
<th>22点</th>
|
|
||||||
<th>23点</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="page">${page}</div>
|
|
||||||
</div>
|
|
||||||
<div id="entranceId" class="tab-pane fade">
|
|
||||||
<table id="contentTable1" class="table table-striped table-bordered table-condensed text-nowrap">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>局点</th>
|
|
||||||
<th>0点</th>
|
|
||||||
<th>1点</th>
|
|
||||||
<th>2点</th>
|
|
||||||
<th>3点</th>
|
|
||||||
<th>4点</th>
|
|
||||||
<th>5点</th>
|
|
||||||
<th>6点</th>
|
|
||||||
<th>7点</th>
|
|
||||||
<th>8点</th>
|
|
||||||
<th>9点</th>
|
|
||||||
<th>10点</th>
|
|
||||||
<th>11点</th>
|
|
||||||
<th>12点</th>
|
|
||||||
<th>14点</th>
|
|
||||||
<th>15点</th>
|
|
||||||
<th>16点</th>
|
|
||||||
<th>17点</th>
|
|
||||||
<th>18点</th>
|
|
||||||
<th>19点</th>
|
|
||||||
<th>20点</th>
|
|
||||||
<th>21点</th>
|
|
||||||
<th>22点</th>
|
|
||||||
<th>23点</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="page">${page}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user