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

14 lines
322 B
JavaScript
Raw Normal View History

2020-10-25 16:22:36 +08:00
Tea.context(function () {
this.deleteCluster = function (clusterId) {
let that = this
teaweb.confirm("确定要删除此集群吗?", function () {
2020-10-25 19:45:42 +08:00
that.$post("/clusters/cluster/delete")
2020-10-25 16:22:36 +08:00
.params({
clusterId: clusterId
})
2020-10-25 19:45:42 +08:00
.success(function () {
window.location = "/clusters"
})
2020-10-25 16:22:36 +08:00
})
}
})