mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 04:10:27 +08:00
13 lines
296 B
JavaScript
13 lines
296 B
JavaScript
|
|
Tea.context(function () {
|
||
|
|
// store information to local
|
||
|
|
localStorage.setItem("sid", this.localSid)
|
||
|
|
localStorage.setItem("ip", this.ip)
|
||
|
|
|
||
|
|
if (this.errorMsg.length == 0) {
|
||
|
|
if (this.redirect.length > 0) {
|
||
|
|
window.location = this.redirect
|
||
|
|
} else {
|
||
|
|
window.location = "/dashboard"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|