(1)特定服务表单提交是否叶子节点自动切换
(2)基础协议,加密隧道行为协议ID修改与APP一致
This commit is contained in:
@@ -186,6 +186,11 @@
|
||||
$("#businessType"+cfgType).selectpicker("val","");
|
||||
$("#businessType"+cfgType).parents(".businessType").addClass("hidden");
|
||||
}
|
||||
if(!$(this).val()||$(this).val()==0){
|
||||
$("#isLeaf").val(0);
|
||||
}else{
|
||||
$("#isLeaf").val(1);
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@@ -341,7 +346,7 @@
|
||||
<div for="groupId"></div>
|
||||
</div>
|
||||
|
||||
<div class="form-group hidden">
|
||||
<%-- <div class="form-group hidden">
|
||||
<label class="col-md-3 control-label"><font color="red">*</font><spring:message code="is_leaf"/>:</label>
|
||||
<div class="col-md-4">
|
||||
<form:select path="isLeaf" class="form-control leafChange">
|
||||
@@ -350,7 +355,13 @@
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div> --%>
|
||||
<c:if test="${not empty specificServiceCfg and specificServiceCfg.isLeaf ne null}">
|
||||
<input type="hidden" name="isLeaf" id="isLeaf" value="${specificServiceCfg.isLeaf}">
|
||||
</c:if>
|
||||
<c:if test="${empty specificServiceCfg or specificServiceCfg.isLeaf eq null}">
|
||||
<input type="hidden" name="isLeaf" id="isLeaf" value="0">
|
||||
</c:if>
|
||||
<%-- <div class="form-group">
|
||||
<label class="col-md-3 control-label"><font color="red">*</font><spring:message code="cfg_type"/>:</label>
|
||||
<div class="col-md-4">
|
||||
|
||||
@@ -313,7 +313,7 @@
|
||||
</c:if>
|
||||
</th>
|
||||
<%-- <th><spring:message code="group_id"/></th> --%>
|
||||
<th><spring:message code="is_leaf"/></th>
|
||||
<%-- <th><spring:message code="is_leaf"/></th> --%>
|
||||
<th><spring:message code="cfg_type"/></th>
|
||||
<th class="sort-column op_time"><spring:message code="operate_time"/></th>
|
||||
</tr>
|
||||
@@ -350,7 +350,7 @@
|
||||
<td title="${specificServiceCfg.specServiceName}">${specificServiceCfg.specServiceName}</td>
|
||||
<td title="${specificServiceCfg.specServiceDesc}">${fns:abbr(specificServiceCfg.specServiceDesc,15)}</td>
|
||||
<%-- <td>${specificServiceCfg.groupId }</td> --%>
|
||||
<td><spring:message code="${fns:getDictLabel('INT_YES_NO',specificServiceCfg.isLeaf,'0')}"></spring:message></td>
|
||||
<%-- <td><spring:message code="${fns:getDictLabel('INT_YES_NO',specificServiceCfg.isLeaf,'0')}"></spring:message></td> --%>
|
||||
<td><c:forEach items="${fns:getDictList('SPECIFIC_SERVICE_CFG_TYPE') }" var="dict">
|
||||
<c:if test="${dict.itemCode==specificServiceCfg.cfgType}"><spring:message code="${dict.itemValue}"/></c:if>
|
||||
</c:forEach>
|
||||
|
||||
Reference in New Issue
Block a user