ip列表界面增加IP格式和端口格式

This commit is contained in:
wangxin
2018-08-13 13:49:04 +08:00
parent aa768302a1
commit b3213adbe5
2 changed files with 18 additions and 2 deletions

View File

@@ -329,6 +329,8 @@
<%-- <th><spring:message code="seq"/></th> --%>
<th exportColumn="config_describe" ><spring:message code="config_describe"/></th>
<th exportColumn="ip_type"><spring:message code="ip_type"/></th>
<th exportColumn="ip_pattern"><spring:message code="ip_pattern"/></th>
<th exportColumn="port_pattern"><spring:message code="port_pattern"/></th>
<c:if test="${specialFunctionId ne 'ipmulitiplex'}">
<th exportColumn="client_ip"><spring:message code="client_ip"/></th>
<th exportColumn="client_port"><spring:message code="client_port"/></th>
@@ -379,7 +381,13 @@
<%-- <td>${status.index+1 }</td> --%>
<td>${cfg.cfgDesc }</td>
<td><c:forEach items="${fns:getDictList('IP_TYPE')}" var="ipType">
<c:if test="${ipType.itemCode==cfg.ipType}">${ipType.itemValue}</c:if>
<c:if test="${ipType.itemCode==cfg.ipType}"><spring:message code="${ipType.itemValue}"/></c:if>
</c:forEach></td>
<td><c:forEach items="${fns:getDictList('IP_PATTERN')}" var="ipPattern">
<c:if test="${ipPattern.itemCode==cfg.ipPattern}"><spring:message code="${ipPattern.itemValue}"/></c:if>
</c:forEach></td>
<td><c:forEach items="${fns:getDictList('PORT_PATTERN')}" var="portPattern">
<c:if test="${portPattern.itemCode==cfg.portPattern}"><spring:message code="${portPattern.itemValue}"/></c:if>
</c:forEach></td>
<c:if test="${specialFunctionId ne 'ipmulitiplex'}">
<td title="${cfg.srcIpAddress }">${fns:abbr(cfg.srcIpAddress, 42)}</td>

View File

@@ -214,6 +214,8 @@
<%-- <th><spring:message code="seq"/></th> --%>
<th exportColumn="config_describe"><spring:message code="config_describe"/></th>
<th exportColumn="ip_type"><spring:message code="ip_type"/></th>
<th exportColumn="ip_pattern"><spring:message code="ip_pattern"/></th>
<th exportColumn="port_pattern"><spring:message code="port_pattern"/></th>
<th exportColumn="client_ip"><spring:message code="client_ip"/></th>
<th exportColumn="client_port"><spring:message code="client_port"/></th>
<th exportColumn="server_ip"><spring:message code="server_ip"/></th>
@@ -237,7 +239,13 @@
<%-- <td>${status.index+1 }</td> --%>
<td>${cfg.cfgDesc }</td>
<td><c:forEach items="${fns:getDictList('IP_TYPE')}" var="ipType">
<c:if test="${ipType.itemCode==cfg.ipType}">${ipType.itemValue}</c:if>
<c:if test="${ipType.itemCode==cfg.ipType}"><spring:message code="${ipType.itemValue}"/></c:if>
</c:forEach></td>
<td><c:forEach items="${fns:getDictList('IP_PATTERN')}" var="ipPattern">
<c:if test="${ipPattern.itemCode==cfg.ipPattern}"><spring:message code="${ipPattern.itemValue}"/></c:if>
</c:forEach></td>
<td><c:forEach items="${fns:getDictList('PORT_PATTERN')}" var="portPattern">
<c:if test="${portPattern.itemCode==cfg.portPattern}"><spring:message code="${portPattern.itemValue}"/></c:if>
</c:forEach></td>
<td title="${cfg.srcIpAddress }">${fns:abbr(cfg.srcIpAddress, 42)}</td>
<td>${cfg.srcPort }</td>