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