实现完整的集群、域名同步

This commit is contained in:
刘祥超
2020-11-14 21:28:14 +08:00
parent a4417f5367
commit b86315a68c
17 changed files with 279 additions and 61 deletions

View File

@@ -0,0 +1,41 @@
Tea.context(function () {
this.isRequesting = true
this.$delay(function () {
this.reload()
})
this.updateCluster = function (clusterId) {
let that = this
teaweb.popup("/dns/updateClusterPopup?clusterId=" + clusterId, {
height: "22em",
callback: function () {
teaweb.success("保存成功", function () {
that.reload()
})
}
})
}
this.updateNode = function (nodeId) {
let that = this
teaweb.popup("/dns/issues/updateNodePopup?nodeId=" + nodeId, {
callback: function () {
teaweb.success("保存成功", function () {
that.reload()
})
}
})
}
this.reload = function () {
this.isRequesting = true
this.$post("$")
.success(function (resp) {
this.issues = resp.data.issues;
})
.done(function () {
this.isRequesting = false
})
}
})