|
|
|
@ -5,7 +5,7 @@ import { CacheTokenService } from '../../service/cache-token.service'//引入服
|
|
|
|
|
import { CookieService } from 'ngx-cookie-service';//cookie插件
|
|
|
|
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
|
|
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
|
|
|
|
|
|
|
|
import { Base64 } from 'js-base64'; |
|
|
|
|
@Component({ |
|
|
|
|
selector: 'app-login', |
|
|
|
|
templateUrl: './login.component.html', |
|
|
|
@ -30,8 +30,8 @@ export class LoginComponent implements OnInit {
|
|
|
|
|
let password = localStorage.getItem('password') |
|
|
|
|
if (account && password) { |
|
|
|
|
this.validateForm.patchValue({ |
|
|
|
|
userName: localStorage.getItem('account'), |
|
|
|
|
password: localStorage.getItem('password') |
|
|
|
|
userName: Base64.decode(localStorage.getItem('account')), |
|
|
|
|
password: Base64.decode(localStorage.getItem('password')) |
|
|
|
|
}); |
|
|
|
|
this.remember = true //这一步是回显后让勾选框为选中状态
|
|
|
|
|
} |
|
|
|
@ -40,7 +40,7 @@ export class LoginComponent implements OnInit {
|
|
|
|
|
this.submitForm() |
|
|
|
|
this.autologin = true //这一步是回显后让勾选框为选中状态
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
errmsg: string = ''; //错误信息
|
|
|
|
@ -57,8 +57,8 @@ export class LoginComponent implements OnInit {
|
|
|
|
|
rememberInfo() { |
|
|
|
|
// 判断用户是否勾选记住密码,如果勾选,在本地储存中储存登录信息
|
|
|
|
|
if (this.remember) { |
|
|
|
|
localStorage.setItem("account", this.validateForm.value.userName) |
|
|
|
|
localStorage.setItem("password", this.validateForm.value.password) |
|
|
|
|
localStorage.setItem("account", Base64.encode(this.validateForm.value.userName)) |
|
|
|
|
localStorage.setItem("password", Base64.encode(this.validateForm.value.password)) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//自动登陆
|
|
|
|
@ -80,7 +80,7 @@ export class LoginComponent implements OnInit {
|
|
|
|
|
localStorage.removeItem("account") |
|
|
|
|
localStorage.removeItem("password") |
|
|
|
|
} |
|
|
|
|
if(!this.autologin){ |
|
|
|
|
if (!this.autologin) { |
|
|
|
|
localStorage.removeItem("isautologin") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|