Authored by fanzelei

update

... ... @@ -106,6 +106,7 @@
async: false,
dataType: "json",
success: function (data) {
console.log(data);
var time = "";
var awsHtml = '';
if (data.data != null) {
... ...
... ... @@ -143,14 +143,7 @@ $("#btn4type").click(function () {
*/
function searchType(ip){
$("#detailTable").hide();
$.ajax({
url: contextPath + "/zkTree/getRoot",
type: "post",
dataType: "json",
data: {
ip: ip
},
success: function (data) {
$("#rootTable").table("load",{ip:ip});
$(function () {
$("#rootTable").table({
url: contextPath + "/zkTree/getRoot",
... ... @@ -195,13 +188,9 @@ function searchType(ip){
});
});
},
error: function (e) {
}
}
});
}
function updateRoot(rowData,ip){
paramObj.name = rowData.name;
... ...