Files
EdgeAdmin/web/views/@default/login/ticket.js
2024-05-10 14:28:25 +08:00

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"
}
}
})