Initial commit (code only without large binaries)

This commit is contained in:
robin
2026-02-15 18:58:44 +08:00
commit 35df75498f
9442 changed files with 1495866 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
}
})