You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
427 B
24 lines
427 B
import { Component, OnInit } from '@angular/core'; |
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
@Component({ |
|
selector: 'app-login', |
|
templateUrl: './login.component.html', |
|
styleUrls: ['./login.component.scss'] |
|
}) |
|
export class LoginComponent implements OnInit { |
|
|
|
constructor(private http:HttpClient,) { } |
|
|
|
ngOnInit(): void { |
|
|
|
} |
|
|
|
errmsg:any; //err信息 |
|
|
|
//登录 |
|
onSubmit (e) { |
|
console.log(e) |
|
} |
|
|
|
}
|
|
|