日志查询时间同步日志总量查询时间.

This commit is contained in:
zhangwenqing
2018-09-03 12:37:46 +08:00
parent bf0d81421b
commit f81584de87
4 changed files with 18 additions and 6 deletions

View File

@@ -1273,6 +1273,7 @@ var getTotalLog=function(){
if(!has){
data.actions.push($(this).attr("action"));
}
$(this).attr("date",data.date.getTime());
data.compileIds.push($(this).attr("compileId"));
data.functionId=$(this).attr("functionId");
data.objs.push($(this));
@@ -1351,9 +1352,10 @@ var toLogSearch = function(index){
var action=$(this).attr("action");
var compileId=$(this).attr("compileId");
var functionId=$(this).attr("functionId");
var date=$(this).attr("date");
var pathName=window.document.location.pathname.substring(0,window.document.location.pathname.indexOf("/nis")+4);
window.location.href = pathName+"/toLogSearch?action="+action+"&functionId="+functionId+"&compileId="+compileId;
window.location.href = pathName+"/toLogSearch?action="+action+"&functionId="+functionId+"&compileId="+compileId+"&date="+date;
}
});