mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
Tea.context(function () {
|
|
this.updateCluster = function (clusterId) {
|
|
teaweb.popup("/dns/updateClusterPopup?clusterId=" + clusterId, {
|
|
height: "25em",
|
|
callback: function () {
|
|
teaweb.success("保存成功", function () {
|
|
teaweb.reload()
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}) |