IP白名单IP类型修改,只有V4,V6两种

This commit is contained in:
wangxin
2018-06-23 12:40:28 +08:00
parent 239b65873f
commit dd7a7888bc

View File

@@ -123,7 +123,7 @@ $(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">
<c:forEach items="${fns:getDictList('IP_TYPE')}" var="ipType">
<c:forEach items="${fns:getDictList('WHITELIST_IPTYPE')}" var="ipType">
<option value="${ipType.itemCode}" <c:if test="${_cfg.ipType==ipType.itemCode}">selected</c:if> >${ipType.itemValue}</option>
</c:forEach>
</select>