1.修复监测告警配置失败的bug

2.修复点击拓扑图节点,关闭弹窗后无限发送请求的bug
3.修复3DRoom 右侧提示框除中文外其他语言状态下,没有节点的节点组不显示提示框的bug
4.国际化文件更新
This commit is contained in:
wangwenrui
2018-10-16 17:11:30 +08:00
parent 6426a446f7
commit 1abccaa785
15 changed files with 255 additions and 189 deletions

View File

@@ -320,6 +320,7 @@ function getDetectInfo(id,type,showStatus){
url ="<c:url value='/detection/monitorData.do?action=query&nodeType=2&requestType=newTopo&nodeId="+id+"'/>";
url2="<c:url value='/detection/monitorData.do?action=queryEmergentDetail&nodeType=2&requestType=topo&nodeId="+id+"'/>";
}
//异常情况,显示紧急告警列表,否则不显示
if(showStatus == 1){
//$("#title").show();
@@ -331,7 +332,6 @@ function getDetectInfo(id,type,showStatus){
top.$("#I4").hide();
top.$("#hr").hide();
}
top.$("#I5").attr("src",url);//由于所有数据列表不会出现隐藏的情况所以标题的确定就有I5来负责
var thisheight = $(document).height()*0.9;
@@ -343,7 +343,10 @@ function getDetectInfo(id,type,showStatus){
shade: 0.6,
closeBtn: 1,
maxmin:true,
content: top.$("#nodeList")
content: top.$("#nodeList"),
cancel: function(index, layero){
top.$("#I4").removeAttr("src");
}
});
}