This commit is contained in:
unknown
2026-02-04 20:27:13 +08:00
commit 3b042d1dad
9410 changed files with 1488147 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
Tea.context(function () {
this.isOk = false
this.errorMessage = ""
this.rawErrorMessage= ""
this.isVerifying = false
this.before = function () {
this.isOk = false
this.errorMessage = ""
this.rawErrorMessage= ""
this.isVerifying = true
}
this.submitSuccess = function (resp) {
this.isOk = resp.data.isOk
this.errorMessage = resp.data.message
this.rawErrorMessage = resp.data.rawErrorMessage
if (this.isOk) {
teaweb.success("验证完成", function () {
window.parent.location.reload()
})
}
}
this.done = function () {
this.isVerifying = false
}
})