Files
EdgeAdmin/web/views/@default/servers/accesslogs/test.js
2021-07-29 17:33:42 +08:00

15 lines
241 B
JavaScript

Tea.context(function () {
this.isRequesting = false
this.success = function () {
teaweb.success("发送成功")
}
this.before = function () {
this.isRequesting = true
}
this.done = function () {
this.isRequesting = false
}
})