(1)IP复用策略,ip复用地址池,dns欺骗ip,asn ip ip属性采用根据function_region_dict判断

(2)由于基础协议业务类型调整APP_BUSINESS_TYPE字典不能共用app与基础协议了,再次改为两个字典
This commit is contained in:
wangxin
2018-09-07 16:38:29 +08:00
parent e63a707a4d
commit ecb139bd9a
10 changed files with 490 additions and 171 deletions

View File

@@ -7,6 +7,9 @@
.tabbable-custom > .tab-content {
margin-top:-121px;
}
.dropdown-menu{
margin-bottom:150px;
}
</style>
<script type="text/javascript">
var validateForm;
@@ -265,7 +268,7 @@
<div class="col-md-4">
<select id="businessType3" name="businessType" class="selectpicker form-control required" data-live-search="true" data-live-search-placeholder="search">
<option value=""><spring:message code="select"/></option>
<c:forEach items="${fns:getDictList('APP_BUSINESS_TYPE')}" var="dict">
<c:forEach items="${fns:getDictList('BASIC_PROTOCOL_BUSINESS_TYPE')}" var="dict">
<option value="${dict.itemCode}"
<c:if test="${dict.itemCode==specificServiceCfg.businessType}">selected</c:if>
><spring:message code="${dict.itemValue}"/></option>

View File

@@ -251,7 +251,7 @@
</c:forEach>
</c:if>
<c:if test="${specificServiceCfg.cfgType==3}">
<c:forEach items="${fns:getDictList('APP_BUSINESS_TYPE') }" var="dict">
<c:forEach items="${fns:getDictList('BASIC_PROTOCOL_BUSINESS_TYPE') }" var="dict">
<form:option value="${dict.itemCode}"><spring:message code='${dict.itemValue}'/></form:option>
</c:forEach>
</c:if>
@@ -339,7 +339,7 @@
</c:forEach>
</c:if>
<c:if test="${specificServiceCfg.cfgType==3}">
<c:forEach items="${fns:getDictList('APP_BUSINESS_TYPE') }" var="dict">
<c:forEach items="${fns:getDictList('BASIC_PROTOCOL_BUSINESS_TYPE') }" var="dict">
<c:if test="${specificServiceCfg.businessType==dict.itemCode}">
<spring:message code="${dict.itemValue}"/>
</c:if>