修复BUG:
1.修复DDOS配置流量阈值(Bps)/(Pps)默认值Bug
2.修正配置导入域名字段错误提示信息
3.SNAT/DNAT复用策略配置 暂不支持 跳转日志检索
4.缓存策略配置导出忽略doLog(与界面列表一致)
5.修复音视频样例配置上传文件二次选择取消后文件框中的文件名还存在
6.修复特定服务管理新增报错
(cherry picked from commit 11424ee91d)
This commit is contained in:
@@ -172,11 +172,19 @@ var GetLogTotal=function(_data){
|
||||
var hasLog=false;
|
||||
for(var i=0;i<data.length;i++){
|
||||
if($(this).attr("compileId")==data[i].compileId){
|
||||
var serviceId= $(this).attr("serviceId");
|
||||
var serviceId= $(this).attr("serviceId");
|
||||
var functionId= $(this).attr("functionId");
|
||||
|
||||
$(this).attr("id",i+"logTotal");
|
||||
//$(this).html(data[i].sum);
|
||||
$(this).html("<a href='javascript:;' onclick='logSearch(\""+data[i].compileId+"\",\""+serviceId+"\")'>"+data[i].sum+"<a>");
|
||||
$(this).parent("tr").find("td:eq(1)").html("<a href='javascript:;' onclick='toLogSearch("+i+")'>"+data[i].compileId+"<a>");
|
||||
// SNAT/DNAT复用策略配置 暂不支持 跳转日志检索
|
||||
if($(this).attr("functionId") != 300 && $(this).attr("functionId") != 304){
|
||||
$(this).html("<a href='javascript:;' onclick='logSearch(\""+data[i].compileId+"\",\""+serviceId+"\")'>"+data[i].sum+"<a>");
|
||||
$(this).parent("tr").find("td:eq(1)").html("<a href='javascript:;' onclick='toLogSearch("+i+")'>"+data[i].compileId+"<a>");
|
||||
}else{
|
||||
$(this).html(data[i].sum);
|
||||
$(this).parent("tr").find("td:eq(1)").html(data[i].compileId);
|
||||
}
|
||||
hasLog=true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user