mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-06 06:40:27 +08:00
11 lines
230 B
JavaScript
11 lines
230 B
JavaScript
|
|
Tea.context(function () {
|
||
|
|
this.verify = function () {
|
||
|
|
teaweb.popup(".verifyPopup?userId=" + this.user.id, {
|
||
|
|
callback: function () {
|
||
|
|
teaweb.success("保存成功", function () {
|
||
|
|
teaweb.reload()
|
||
|
|
})
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
})
|