修改http日志的Action显示

This commit is contained in:
zhangwei
2018-12-17 22:53:28 +06:00
parent 0244c55ced
commit 05ae3f8d1d

View File

@@ -97,7 +97,17 @@
<c:forEach items="${serviceList}" var="service" varStatus="satus">
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
<form:option value="${service.serviceId}"><spring:message code="${service.actionCode}"/></form:option>
<c:choose>
<c:when test="${service.serviceId eq 152}">
<form:option value="${service.serviceId}"><spring:message code="keywords"/> <spring:message code="${dict.itemValue}"/></form:option>
</c:when>
<c:when test="${service.serviceId eq 40}">
<form:option value="${service.serviceId}"><spring:message code="keywords"/> <spring:message code="${dict.itemValue}"/></form:option>
</c:when>
<c:otherwise>
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
</c:otherwise>
</c:choose>
</c:if>
</c:forEach>
</c:forEach>