From adae5f87d8483f7b207ce607d840c4d2470c75f7 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Mon, 15 May 2023 16:45:52 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]nav=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E9=80=89=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/navigation/navigation.component.ts | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/app/navigation/navigation.component.ts b/src/app/navigation/navigation.component.ts index 3eae51b..a64b2b7 100644 --- a/src/app/navigation/navigation.component.ts +++ b/src/app/navigation/navigation.component.ts @@ -19,6 +19,7 @@ import { Router, ActivatedRoute } from "@angular/router"; export class NavigationComponent implements OnInit { constructor( private router: Router, + private route: ActivatedRoute, public emitService: ComponentServiceService, public navmenus: CacheTokenService, private http: HttpClient, @@ -28,7 +29,23 @@ export class NavigationComponent implements OnInit { ) {} roleType = sessionStorage.getItem("roleType"); - ngOnInit() {} + ngOnInit() { + console.log(1, this.router); + if (this.router.url.indexOf("createexam-index") !== -1) { + this.selectedNav = "创建考试"; + } + if (this.router.url.indexOf("mark-papers-index") !== -1) { + this.selectedNav = "阅卷"; + } + if (this.router.url.indexOf("statistic") !== -1) { + this.selectedNav = "统计分析"; + if (this.router.url.indexOf("examinee") !== -1) { + this.selectedNav2 = "考试统计"; + }else{ + this.selectedNav2 = "能力分析"; + } + } + } selectedNav; selectedNav2;