1.配置界面筛选条件名称修改 2.配置界面日志总量列为0不可点击查询

This commit is contained in:
zhangwenqing
2018-08-31 11:43:04 +08:00
parent 217d780e25
commit d79eea4877
35 changed files with 73 additions and 69 deletions

View File

@@ -1277,7 +1277,11 @@ var GetLogTotal=function(_data){
for(var i=0;i<data.length;i++){
if($(this).attr("compileId")==data[i].compileId){
$(this).attr("id",i+"logTotal");
$(this).html("<a href='javascript:;' onclick='toLogSearch("+i+")'>"+data[i].sum+"<a>");
if(data[i].sum != 0){
$(this).html("<a href='javascript:;' onclick='toLogSearch("+i+")'>"+data[i].sum+"<a>");
}else{
$(this).html(data[i].sum);
}
}
}
})