|
@@ -1,7 +1,5 @@
|
|
-import { Component, OnInit,Input } from '@angular/core';
|
|
|
|
-import { Location } from '@angular/common';
|
|
|
|
|
|
+import { Component, OnInit } from '@angular/core';
|
|
import { User } from '../../../dtcservice/user'
|
|
import { User } from '../../../dtcservice/user'
|
|
-import {UserService} from '../../../dtcservice/user.service';
|
|
|
|
|
|
|
|
@Component({
|
|
@Component({
|
|
selector: 'app-user-add',
|
|
selector: 'app-user-add',
|
|
@@ -9,17 +7,12 @@ import {UserService} from '../../../dtcservice/user.service';
|
|
styleUrls: ['./user-add.component.scss']
|
|
styleUrls: ['./user-add.component.scss']
|
|
})
|
|
})
|
|
export class UserAddComponent implements OnInit {
|
|
export class UserAddComponent implements OnInit {
|
|
- @Input() user:User;
|
|
|
|
- constructor(private location:Location,private userService:UserService) { }
|
|
|
|
|
|
+ user:User;
|
|
|
|
+ constructor() { }
|
|
|
|
|
|
ngOnInit() {
|
|
ngOnInit() {
|
|
if(!this.user){
|
|
if(!this.user){
|
|
this.user = {} as User;
|
|
this.user = {} as User;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
- save():void{
|
|
|
|
- this.userService.addUser(this.user).subscribe(() => this.location.back());
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
}
|
|
}
|