文件摘要去除 do_log、log total

This commit is contained in:
leijun
2018-08-31 18:17:16 +08:00
parent 8bfbae8afc
commit 8098bbdbdb
2 changed files with 8 additions and 8 deletions

View File

@@ -218,19 +218,19 @@
</div>
<div class="row">
<div class="col-md-6">
<div class="col-md-6" hidden="true" >
<div class="form-group">
<label class="control-label col-md-3"><spring:message code="do_log" /></label>
<c:forEach items="${fns:getDictList('DO_LOG') }" var="dict">
<c:choose>
<c:when test="${dict.itemCode eq _cfg.doLog}">
<label class="radio-inline">
<input type="radio" name="doLog" checked value="${dict.itemCode}" ><spring:message code="${dict.itemValue}"/>
<input type="radio" name="doLog" checked value="0" ><spring:message code="${dict.itemValue}"/>
</label>
</c:when>
<c:otherwise>
<label class="radio-inline">
<input type="radio" name="doLog" value="${dict.itemCode}" ><spring:message code="${dict.itemValue}"/>
<input type="radio" name="doLog" value="0" ><spring:message code="${dict.itemValue}"/>
</label>
</c:otherwise>
</c:choose>