1.修改Stream配置导入页action国际化;2.修改IP Spoofing配置导入

This commit is contained in:
zhangwenqing
2019-01-16 16:45:44 +08:00
parent 6b8f2843d3
commit 170e0ef1c5
5 changed files with 125 additions and 97 deletions

View File

@@ -47,6 +47,7 @@
<c:if test="${serviceIndex eq 0}">checked</c:if>>
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
<c:if test="${dict.itemCode eq service.action }">
<!-- 拦截策略 -->
<c:if test="${service.functionId eq 200 }">
<c:if test="${service.action eq 1 }">
<spring:message code="intercept"/>
@@ -58,7 +59,18 @@
<spring:message code="${dict.itemValue }"/>
</c:if>
</c:if>
<c:if test="${service.functionId ne 200 }">
<!-- Stream配置 -->
<c:if test="${service.functionId eq 407 || service.functionId eq 408 || service.functionId eq 63 }">
<c:choose>
<c:when test="${service.action eq 16}">
<spring:message code="block_drop"/>
</c:when>
<c:otherwise>
<spring:message code="${dict.itemValue }"/>
</c:otherwise>
</c:choose>
</c:if>
<c:if test="${service.functionId ne 200 && service.functionId ne 407 && service.functionId ne 408 && service.functionId ne 63}">
<spring:message code="${dict.itemValue }"/>
</c:if>
</c:if>