列表以及form表单IP类型改为动态从字典获取

This commit is contained in:
wangxin
2018-05-29 16:28:03 +08:00
parent aa341445f2
commit 180959270c
2 changed files with 6 additions and 3 deletions

View File

@@ -115,8 +115,9 @@ $(function(){
<label class="control-label col-md-3"><font color="red">*</font><spring:message code="ip_type"/></label>
<div class="col-md-6">
<select name="ipType" class="selectpicker show-tick form-control required">
<option value="4" <c:if test="${_cfg.ipType==4}">selected</c:if> >V4</option>
<option value="6" <c:if test="${_cfg.ipType==6}">selected</c:if>>V6</option>
<c:forEach items="${fns:getDictList('IP_TYPE')}" var="ipType">
<option value="${ipType.itemCode}" <c:if test="${_cfg.ipType==ipType.itemCode}">selected</c:if> >${ipType.itemValue}</option>
</c:forEach>
</select>
</div>
<div for="ipType"></div>

View File

@@ -232,7 +232,9 @@
<td><input type="checkbox" class="i-checks" id="${cfg.cfgId}" value="${cfg.isAudit}"></td>
<%-- <td>${status.index+1 }</td> --%>
<td>${cfg.cfgDesc }</td>
<td>V${cfg.ipType }</td>
<td><c:forEach items="${fns:getDictList('IP_TYPE')}" var="ipType">
<c:if test="${ipType.itemCode==cfg.ipType}">${ipType.itemValue}</c:if>
</c:forEach></td>
<td>${cfg.srcIpAddress }</td>
<td>${cfg.srcPort }</td>
<td>${cfg.destIpAddress }</td>