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