Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ops
/
monitor-ui
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
simba
9 years ago
Commit
26597b35bc69d067604b8e063108e97b112eef04
1 parent
0c7678fc
update
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
33 deletions
monitor-ui-web/src/main/webapp/jsp/host/editHostInfo.jsp
monitor-ui-web/src/main/webapp/jsp/host/hostGroupList.jsp
monitor-ui-web/src/main/webapp/jsp/host/hostInfoList.jsp
monitor-ui-web/src/main/webapp/jsp/zkInfo/zkInfoList.jsp
monitor-ui-web/src/main/webapp/jsp/host/editHostInfo.jsp
View file @
26597b3
...
...
@@ -89,6 +89,14 @@
},
onLoadSuccess : function(data) {
$("#hostInfoForm #hostIp").prop("readonly",true);
//$(":checkbox[value='"+java+"']").prop("checked",true);
if(data.tags != null && data.tags != ""){
var tags=data.tags.substr(0,data.tags.length-1);
var tagArr=tags.split(",");
for(i=0;i<tagArr.length;i++){
$(":checkbox[value='"+tagArr[i]+"']").prop("checked",true);
}
}
}
});
...
...
monitor-ui-web/src/main/webapp/jsp/host/hostGroupList.jsp
View file @
26597b3
...
...
@@ -68,29 +68,16 @@
columnAutoWidth: false,
url: contextPath + "hostGroup/getHostGroups",
striped: true,
title: "
主机
信息列表",
title: "
标签
信息列表",
pagination: true,
pageSize: 10,
loadFilter: function (data) {
return defaultLoadFilter(data);
},
columns: [{
title: "ID",
field: "id",
width: "10%"
}, {
title: "标签名",
field: "groupName",
width: "20%"
}, {
title: "创建时间",
field: "createTime",
width: "20%"
}, {
title: "更新时间",
field: "updateTime",
width: "20%"
width: "30%"
}, {
title: "操作",
formatter: function (value, rowData, rowIndex) {
...
...
monitor-ui-web/src/main/webapp/jsp/host/hostInfoList.jsp
View file @
26597b3
...
...
@@ -79,10 +79,6 @@
return defaultLoadFilter(data);
},
columns : [{
title : "ID",
field : "id",
width : "5%"
}, {
title : "主机别名",
field : "alias",
width : "12%"
...
...
@@ -113,14 +109,6 @@
},
width : "12%"
}, {
title : "创建时间",
field : "createTime",
width : "10%"
}, {
title : "更新时间",
field : "updateTime",
width : "10%"
},{
title : "操作",
field : "op",
...
...
monitor-ui-web/src/main/webapp/jsp/zkInfo/zkInfoList.jsp
View file @
26597b3
...
...
@@ -62,12 +62,6 @@
return defaultLoadFilter(data);
},
columns: [{
title: "ID",
field: "id",
formatter : function(value, rowData, rowIndex) {
return rowIndex;
}
},{
title: "IP",
field: "hostIp",
formatter : function(value, rowData, rowIndex) {
...
...
Please
register
or
login
to post a comment