管理端全部功能跑通

This commit is contained in:
robin
2026-02-27 10:35:22 +08:00
parent 4d275c921d
commit 150799f41d
263 changed files with 22664 additions and 4053 deletions

View File

@@ -0,0 +1,17 @@
Tea.context(function () {
this.success = function (resp) {
let clusterId = 0
if (resp != null && resp.data != null && typeof resp.data.clusterId != "undefined") {
clusterId = resp.data.clusterId
}
if (clusterId > 0) {
teaweb.success("保存成功", function () {
window.location = "/httpdns/clusters/cluster?clusterId=" + clusterId
})
return
}
teaweb.success("保存成功", function () {
window.location = "/httpdns/clusters"
})
}
})