(1)common.js加入ajax查询日志总量方法体,等待日志方面可用后完善方法
(2)list.jsp加入遮罩层,遮罩层的调用现阶段先注释
This commit is contained in:
@@ -617,6 +617,27 @@ var viewAreaInfo=function(path,areaEffectiveIds,compileId){
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
var GetLogTotal=function(){
|
||||
$.ajax({
|
||||
type:'post',
|
||||
timeout:1000,//超时时间设置,查询接口时间过长超时
|
||||
url:path+'/logs/ajaxGetLogTotal',
|
||||
data:function(){//处理数据
|
||||
return {"functionId":functionId,"compileIds":compileIds};
|
||||
},
|
||||
dataType:'json',
|
||||
async:false,
|
||||
success:function(data,textStatus){//处理返回结果
|
||||
|
||||
},
|
||||
complete:function(XMLHttpRequest,status){//超时设置
|
||||
if(status=="timeout"){
|
||||
GetLogTotal.about();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
//删除区域IP
|
||||
function delAreaIp(obj){
|
||||
var thisObj=$(obj);
|
||||
|
||||
Reference in New Issue
Block a user