Files
EdgeAdmin/web/views/@default/dns/index.js
2020-11-15 21:17:52 +08:00

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()
})
}
})
}
})