|
|
|
import { HttpClient } from '@angular/common/http';
|
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { FormControl } from '@angular/forms';
|
|
|
|
import { DateAdapter } from '@angular/material/core';
|
|
|
|
import { MatDialog } from '@angular/material/dialog';
|
|
|
|
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar';
|
|
|
|
import { Router } from '@angular/router';
|
|
|
|
import { CacheTokenService } from 'src/app/http-interceptors/cache-token.service';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-home',
|
|
|
|
templateUrl: './home.component.html',
|
|
|
|
styleUrls: ['./home.component.scss']
|
|
|
|
})
|
|
|
|
export class HomeComponent implements OnInit {
|
|
|
|
|
|
|
|
constructor(private http:HttpClient,public token:CacheTokenService,public dialog: MatDialog,private router:Router,public snackBar: MatSnackBar,private adapter: DateAdapter<any>,) { }
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
this.adapter.setLocale('CH');
|
|
|
|
this.enddate = new FormControl(new Date()); //日历结束时间显示
|
|
|
|
}
|
|
|
|
|
|
|
|
enddate:any; //查询时间
|
|
|
|
|
|
|
|
//退出系统
|
|
|
|
signOut () {
|
|
|
|
let out = confirm("您确定要退出吗")
|
|
|
|
if(out) {
|
|
|
|
this.http.post('/api/Account/SignOut',{}).subscribe(data=> {
|
|
|
|
this.token.delete()
|
|
|
|
sessionStorage.clear()
|
|
|
|
window.localStorage.clear()
|
|
|
|
this.router.navigate(['/login'])
|
|
|
|
const config = new MatSnackBarConfig();
|
|
|
|
config.verticalPosition = 'bottom';
|
|
|
|
config.duration = 3000
|
|
|
|
this.snackBar.open('成功退出','确定',config);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//查询
|
|
|
|
query () {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//新增
|
|
|
|
add () {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|