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.
23 lines
538 B
23 lines
538 B
3 years ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
import { Router } from '@angular/router';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-unit',
|
||
|
templateUrl: './unit.component.html',
|
||
|
styleUrls: ['./unit.component.scss']
|
||
|
})
|
||
|
export class UnitComponent implements OnInit {
|
||
|
|
||
|
constructor(private router: Router) { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
next() {
|
||
|
this.router.navigate(['/basicInfo/unit/details']);
|
||
|
}
|
||
|
ngOnDestroy(): void {
|
||
|
console.log('删除了6666666666666')
|
||
|
// CustomReuseStrategy.deleteRouteSnapshot('/basicInfo/unit');
|
||
|
}
|
||
|
}
|