界面配置域表达式处理

This commit is contained in:
leijun
2018-10-18 18:41:36 +08:00
parent 71c5af409d
commit 78d472c223

View File

@@ -116,14 +116,14 @@
<spring:message code="expression_type" /></label>
<div class="col-md-6">
<c:if test="${!empty region.configExprType}">
<c:forEach var="exprType" items="${fn:split(region.configExprType,',')}">
<c:forEach items="${fns:getDictList('EXPRESSION_TYPE')}" var="exprTypeC">
<c:forEach var="exprType" items="${fn:split(region.configExprType,',')}" varStatus="stat" >
<c:forEach items="${fns:getDictList('EXPRESSION_TYPE')}" var="exprTypeC" >
<c:if test="${exprTypeC.itemCode eq exprType}">
<label class="radio-inline">
<input type="radio"
name="${cfgName}.exprType" value="${exprType }"
class="required"
checked
<c:if test="${stat.index == 0 }"> checked </c:if>
>
<spring:message code="${exprTypeC.itemValue }" />
</label>