实现用户注册/审核功能

This commit is contained in:
刘祥超
2022-01-05 10:45:28 +08:00
parent 94036073de
commit 941ff46c2c
17 changed files with 226 additions and 28 deletions

View File

@@ -0,0 +1,11 @@
Tea.context(function () {
this.verify = function () {
teaweb.popup(".verifyPopup?userId=" + this.user.id, {
callback: function () {
teaweb.success("保存成功", function () {
teaweb.reload()
})
}
})
}
})