1.配置界面筛选条件名称修改 2.配置界面日志总量列为0不可点击查询
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user