mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-11 01:50:27 +08:00
17 lines
309 B
JavaScript
17 lines
309 B
JavaScript
Tea.context(function () {
|
|
this.isRequesting = false
|
|
|
|
this.success = function () {
|
|
teaweb.success("完成确认,现在跳转到首页", function () {
|
|
window.location = "/"
|
|
})
|
|
}
|
|
|
|
this.before = function () {
|
|
this.isRequesting = true
|
|
}
|
|
|
|
this.done = function () {
|
|
this.isRequesting = false
|
|
}
|
|
}) |