mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-13 20:00:25 +08:00
20 lines
364 B
JavaScript
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
|
|
})
|
|
}
|
|
}) |