Files
EdgeAdmin/web/views/@default/clusters/cluster/settings/ddos-protection/status.js
2022-05-18 21:02:47 +08:00

20 lines
364 B
JavaScript

Tea.context(function () {
this.isLoading = true
this.results = []
this.$delay(function () {
this.reload()
})
this.reload = function () {
this.isLoading = true
this.$post("$")
.params({ clusterId: this.clusterId })
.success(function (resp) {
this.results = resp.data.results
})
.done(function () {
this.isLoading = false
})
}
})