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