1.修改国际化;

2.修改app策略,基础协议,隧道行为配置的block动作描述;
3.提交app特征引用的表单jsp
This commit is contained in:
zhangwei
2019-01-14 20:38:49 +06:00
parent fa62e1a6b2
commit d34816b500
11 changed files with 553 additions and 22 deletions

View File

@@ -250,7 +250,14 @@ var switchRateLimitType=function(){
<c:if test="${_cfg.action==service.action || (_cfg.action==null && satus.index==0)}">checked</c:if>>
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
<c:if test="${dict.itemCode eq service.action }">
<spring:message code="${dict.itemValue }"/>
<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:forEach>
</c:if>

View File

@@ -425,7 +425,14 @@
<td>
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
<c:if test="${dict.itemCode eq cfg.action }">
<spring:message code="${dict.itemValue }"/>
<c:choose>
<c:when test="${cfg.action eq 16}">
<spring:message code="block_drop"/>
</c:when>
<c:otherwise>
<spring:message code="${dict.itemValue }"/>
</c:otherwise>
</c:choose>
</c:if>
</c:forEach>
</td>