可以在节点列表中直接修改节点所属线路

This commit is contained in:
刘祥超
2021-08-29 14:00:59 +08:00
parent 9549424835
commit f5f07c0e96
14 changed files with 235 additions and 5 deletions

View File

@@ -21,4 +21,17 @@ Tea.context(function () {
.refresh()
})
}
this.updateNodeDNS = function (nodeId) {
let that = this
teaweb.popup("/clusters/cluster/node/updateDNSPopup?clusterId=" + this.clusterId + "&nodeId=" + nodeId, {
width: "46em",
height: "26em",
callback: function () {
teaweb.success("保存成功", function () {
teaweb.reload()
})
}
})
}
})