Files
2026-02-04 20:27:13 +08:00

12 lines
262 B
JavaScript

Tea.context(function () {
this.success = NotifyReloadSuccess("任务提交成功")
this.isRequesting = false
this.before = function () {
this.isRequesting = true
}
this.done = function () {
this.isRequesting = false
}
})