Files
EdgeAdmin/web/views/@default/clusters/cluster/delete.js

16 lines
559 B
JavaScript
Raw Normal View History

2020-10-25 16:22:36 +08:00
Tea.context(function () {
2021-02-06 19:40:29 +08:00
this.deleteCluster = function (clusterId) {
let that = this
2022-04-02 16:28:22 +08:00
teaweb.confirm("html:确定要删除此集群吗?<br/>删除后不可恢复!", function () {
2021-02-06 19:40:29 +08:00
that.$post("/clusters/cluster/delete")
.params({
clusterId: clusterId
})
.success(function () {
teaweb.success("删除成功", function () {
window.location = "/clusters"
})
})
})
}
2020-10-25 16:22:36 +08:00
})