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