...
|
...
|
@@ -458,7 +458,14 @@ |
|
|
var content = "";
|
|
|
if(rowData.timeoutInfo != null){
|
|
|
for(var i = 0;i<rowData.timeoutInfo.length;i++){
|
|
|
content= content +rowData.timeoutInfo[i]+"<br><br>";
|
|
|
var temp = new Array();
|
|
|
temp = rowData.timeoutInfo[i].split("+---");
|
|
|
if(temp != null && temp.length>0){
|
|
|
for(var j = 0;j<temp.length;j++){
|
|
|
content= content + temp[j] + "<br>";
|
|
|
}
|
|
|
}
|
|
|
content= content +"<br><br>";
|
|
|
}
|
|
|
}
|
|
|
editBtn.click(function () {
|
...
|
...
|
@@ -521,8 +528,16 @@ |
|
|
width: "10%"
|
|
|
},{
|
|
|
title: "服务名",
|
|
|
field: "serviceName",
|
|
|
width: "10%"
|
|
|
field: "serviceNames",
|
|
|
width: "10%",
|
|
|
formatter:function(value, rowData, rowIndex){
|
|
|
var serviceNames = rowData.serviceNames;
|
|
|
if(serviceNames == null || serviceNames==""){
|
|
|
serviceNames = $("#searchApiName").select("getText");
|
|
|
}
|
|
|
return serviceNames;
|
|
|
}
|
|
|
}, {
|
|
|
}, {
|
|
|
title: "总请求次数",
|
|
|
field: "totalCount",
|
...
|
...
|
@@ -578,7 +593,14 @@ |
|
|
var content = "";
|
|
|
if(rowData.timeoutInfo != null){
|
|
|
for(var i = 0;i<rowData.timeoutInfo.length;i++){
|
|
|
content= content +rowData.timeoutInfo[i]+"<br><br>";
|
|
|
var temp = new Array();
|
|
|
temp = rowData.timeoutInfo[i].split("+---");
|
|
|
if(temp != null && temp.length>0){
|
|
|
for(var j = 0;j<temp.length;j++){
|
|
|
content= content + temp[j] + "<br>";
|
|
|
}
|
|
|
}
|
|
|
content= content +"<br><br>";
|
|
|
}
|
|
|
}
|
|
|
editBtn.click(function () {
|
...
|
...
|
@@ -640,8 +662,16 @@ |
|
|
sortable:true
|
|
|
}, {
|
|
|
title: "服务名",
|
|
|
field: "serviceName",
|
|
|
width: "10%"
|
|
|
field: "serviceNames",
|
|
|
width: "10%",
|
|
|
formatter:function(value, rowData, rowIndex){
|
|
|
var serviceNames = rowData.serviceNames;
|
|
|
if(serviceNames == null || serviceNames==""){
|
|
|
serviceNames = $("#searchApiName").select("getText");
|
|
|
}
|
|
|
return serviceNames;
|
|
|
}
|
|
|
}, {
|
|
|
},{
|
|
|
title: "网络归属",
|
|
|
field: "type",
|
...
|
...
|
@@ -702,7 +732,14 @@ |
|
|
var content = "";
|
|
|
if(rowData.timeoutInfo != null){
|
|
|
for(var i = 0;i<rowData.timeoutInfo.length;i++){
|
|
|
content= content +rowData.timeoutInfo[i]+"<br><br>";
|
|
|
var temp = new Array();
|
|
|
temp = rowData.timeoutInfo[i].split("+---");
|
|
|
if(temp != null && temp.length>0){
|
|
|
for(var j = 0;j<temp.length;j++){
|
|
|
content= content + temp[j] + "<br>";
|
|
|
}
|
|
|
}
|
|
|
content= content +"<br><br>";
|
|
|
}
|
|
|
}
|
|
|
editBtn.click(function () {
|
...
|
...
|
|