1、修正网站、文件传输提交审核时区域IP列表为空的BUG;
2、修改HTTP的配置域标识,与服务接口端统一。 Signed-off-by: zhangwei <zhangwei@intranet.com>
This commit is contained in:
@@ -38,7 +38,8 @@
|
||||
<a id="uploadSrc" class="btn btn-default btn-search" href="javascript:" style=""><i class="fa fa-search"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<input id="rawLen" name="rawLen" type="hidden" value="${digestCfg.rawLen }"/>
|
||||
<input id="rawLen" name="${cfgName}.rawLen" type="hidden" value="${digestCfg.rawLen }"/>
|
||||
<input id="digest" name="${cfgName}.digest" type="hidden" value="${digestCfg.digest }"/>
|
||||
</div>
|
||||
<div for="fileInfo"></div>
|
||||
</div>
|
||||
|
||||
@@ -233,7 +233,7 @@
|
||||
</c:if>
|
||||
|
||||
<c:if test="${region.regionType eq 2 }">
|
||||
<c:if test="${region.configRegionValue eq 'http_url' }">
|
||||
<c:if test="${region.configRegionValue eq 'NTC_HTTP_URL' }">
|
||||
<!--url info-->
|
||||
<div class="httpReqCfg">
|
||||
<c:set var="tabName" value="httpUrlTab"></c:set>
|
||||
@@ -256,7 +256,7 @@
|
||||
</div>
|
||||
<!--/url info-->
|
||||
</c:if>
|
||||
<c:if test="${region.configRegionValue eq 'http_req_body' }">
|
||||
<c:if test="${region.configRegionValue eq 'NTC_HTTP_REQ_BODY' }">
|
||||
<!--request body info-->
|
||||
<div class="httpReqCfg">
|
||||
<c:set var="tabName" value="httpReqBodyTab"></c:set>
|
||||
@@ -278,7 +278,7 @@
|
||||
</div>
|
||||
<!--/request body info-->
|
||||
</c:if>
|
||||
<c:if test="${region.configRegionValue eq 'http_res_body' }">
|
||||
<c:if test="${region.configRegionValue eq 'NTC_HTTP_RES_BODY' }">
|
||||
<!--response body info-->
|
||||
<div class="httpResCfg">
|
||||
<c:set var="tabName" value="httpResBodyTab"></c:set>
|
||||
@@ -301,7 +301,7 @@
|
||||
</c:if>
|
||||
</c:if>
|
||||
<c:if test="${region.regionType eq 3 }">
|
||||
<c:if test="${region.configRegionValue eq 'http_req_hdr' }">
|
||||
<c:if test="${region.configRegionValue eq 'NTC_HTTP_REQ_HDR' }">
|
||||
<!--request header info-->
|
||||
<div class="httpReqCfg">
|
||||
<c:set var="tabName" value="httpReqHdrTab"></c:set>
|
||||
@@ -323,7 +323,7 @@
|
||||
</div>
|
||||
<!--/request header info-->
|
||||
</c:if>
|
||||
<c:if test="${region.configRegionValue eq 'http_res_hdr' }">
|
||||
<c:if test="${region.configRegionValue eq 'NTC_HTTP_RES_HDR' }">
|
||||
<!--response header info-->
|
||||
<div class="httpResCfg">
|
||||
<c:set var="tabName" value="httpResHdrTab"></c:set>
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
<c:if test="${fn:length(_cfg.httpReqBodyList)>0}">
|
||||
<div id="reqBodyTitle${index}" onclick="switchSubCfgTabInfo('reqBody',${index})"
|
||||
class="col-md-1 tabInfo" name="tabTitle${index }">
|
||||
<spring:message code='http_req_hdr_title' />
|
||||
<spring:message code='http_req_body_title' />
|
||||
<i id="reqBody${index}" class="fa" name="tabFlag${index}"></i>
|
||||
</div>
|
||||
</c:if>
|
||||
|
||||
Reference in New Issue
Block a user