调整dns、url新增界面分组配置的位置

This commit is contained in:
zhanghongqing
2019-02-22 10:41:47 +08:00
parent 3a1580bb0c
commit b8c9b88196
2 changed files with 16 additions and 13 deletions

View File

@@ -278,7 +278,7 @@
<small> <span class="glyphicon glyphicon-plus dnsGroupAdd"
onClick="addContent(this,'dnsGroup')" title="add"></span></small>
</h4>
<div class="row boxSolid dnsGroup0 hidden" >
<div class="row boxSolid dnsGroup0" >
<%@include file="/WEB-INF/views/cfg/dnsGroupForm.jsp"%>
</div>

View File

@@ -245,9 +245,21 @@
</div>
</div>
</div>
<!-- url组 tabName写死为 urlGroup -->
<h4 class="form-section">
<spring:message code="urlGroup" />
<small> <span class="glyphicon glyphicon-plus urlGroupAdd"
onClick="addContent(this,'urlGroup')" title="add"></span></small>
</h4>
<div class="row boxSolid urlGroup0" >
<%@include file="/WEB-INF/views/cfg/urlGroupForm.jsp"%>
</div>
<h4 class="form-section">
<spring:message code="http_url_title" />
<small> <span class="glyphicon glyphicon-plus httpUrlTabAdd hidden"
<small> <span class="glyphicon glyphicon-plus httpUrlTabAdd"
onClick="addContent(this,'httpUrlTab')" title="add"></span></small>
</h4>
<c:set var="strCfgIndex" value="0"></c:set>
@@ -284,7 +296,7 @@
<c:forEach items="${_cfg.httpUrlList}" var="cfg"
varStatus="status">
<c:set var="cfgName" value="httpUrlList[${status.index}]"></c:set>
<div class="row boxSolid ${tabName}${status.index}" >
<div class="row boxSolid ${tabName}${status.index} hidden" >
<%@include file="/WEB-INF/views/cfg/complexCfgForm.jsp"%>
</div>
<input type="hidden" name="${cfgName}.sourceCompileId" value="${cfg.sourceCompileId }">
@@ -341,16 +353,7 @@
</c:if> --%>
</c:forEach>
<!-- url组 tabName写死为 urlGroup -->
<h4 class="form-section">
<spring:message code="urlGroup" />
<small> <span class="glyphicon glyphicon-plus urlGroupAdd"
onClick="addContent(this,'urlGroup')" title="add"></span></small>
</h4>
<div class="row boxSolid urlGroup0 hidden" >
<%@include file="/WEB-INF/views/cfg/urlGroupForm.jsp"%>
</div>
<br>
<%@include file="/WEB-INF/include/form/areaInfo.jsp" %>