日志统一方向字段字典

This commit is contained in:
zhanghongqing
2018-11-16 11:44:50 +08:00
parent 3603527ec8
commit c62b56019d
35 changed files with 105 additions and 105 deletions

View File

@@ -124,10 +124,10 @@ $(document).ready(function(){
<div class="col-md-2">
<div class="form-group">
<label><spring:message code="direct"/></label>
<label><spring:message code="direction"/></label>
<form:select path="direction" class="selectpicker select2 form-control">
<form:option value=""><spring:message code="select"/></form:option>
<c:forEach items="${fns:getDictList('IP_LOCATION')}" var="dict">
<c:forEach items="${fns:getDictList('LOG_DIRECTION')}" var="dict">
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
</c:forEach>
</form:select>
@@ -303,7 +303,7 @@ $(document).ready(function(){
</c:forEach>
</td>
<td>
<c:forEach items="${fns:getDictList('DIRECTION')}" var="direction">
<c:forEach items="${fns:getDictList('LOG_DIRECTION')}" var="direction">
<c:if test="${direction.itemCode eq log.direction}"><spring:message code="${direction.itemValue}"/></c:if>
</c:forEach>
</td>