Files
EdgeAdmin/web/views/@default/clusters/cluster/settings/services/status.js

22 lines
511 B
JavaScript
Raw Normal View History

2021-01-11 18:15:53 +08:00
Tea.context(function () {
this.isRequesting = true
this.results = []
this.$delay(function () {
this.reload()
}, 2000)
this.reload = function () {
this.isRequesting = true
this.$post("$")
.params({
clusterId: this.clusterId
})
.success(function (resp) {
this.results = resp.data.results
})
.done(function () {
this.isRequesting = false
})
}
})