Files
EdgeAdmin/web/views/@default/clusters/grants/test.js
2021-04-18 21:19:50 +08:00

17 lines
287 B
JavaScript

Tea.context(function () {
this.isRequesting = false
this.resp = null
this.success = function (resp) {
this.resp = resp.data
}
this.requestBefore = function () {
this.isRequesting = true
this.resp = null
}
this.requestDone = function () {
this.isRequesting = false
}
})