diff options
author | cyuamber <xuranyjy@chinamobile.com> | 2019-08-29 18:43:08 +0800 |
---|---|---|
committer | xu ran <xuranyjy@chinamobile.com> | 2019-08-30 02:20:49 +0000 |
commit | 0c1e82ccbfa6dcb8ee5d11220a93fefc61465374 (patch) | |
tree | dbd894bc5909df38bde9a2738e366d7913627195 /usecaseui-portal/src/app/app.component.ts | |
parent | cbb4b91ad39b44a76d1b1d4b745ef2b38fab74ce (diff) |
feat: change the mock data path config file
Change-Id: I5ca301d8ff0b084f64366312543c9036d8e76de8
Issue-ID: USECASEUI-307
Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/app.component.ts')
-rw-r--r-- | usecaseui-portal/src/app/app.component.ts | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/usecaseui-portal/src/app/app.component.ts b/usecaseui-portal/src/app/app.component.ts index 7306db1c..2642b3ed 100644 --- a/usecaseui-portal/src/app/app.component.ts +++ b/usecaseui-portal/src/app/app.component.ts @@ -26,14 +26,14 @@ import 'rxjs/add/operator/map'; styleUrls: ['./app.component.less'] }) export class AppComponent { - public url:string = 'home'; + public url:string = 'home'; constructor(private translate: TranslateService,private myhttp: HomesService,private router:Router,) { this.currentLanguageGet(); this.getUrl(); - - } + + // Get the current routing path getUrl(){ this.router.events.map(event=> { if(event instanceof NavigationEnd){ @@ -42,15 +42,12 @@ export class AppComponent { }).subscribe(event=>{}) } - //209.05.08 Get the currentLanguage currentloginId = null; currentLanguage = "en"; currentLanguageGet() { this.currentloginId = sessionStorage.getItem("userId") || null; - console.log(this.currentloginId,"this.currentloginId","loginId"); if (this.currentloginId != null) { - console.log(this.currentloginId,"this.currentloginId","loginId","you id"); this.myhttp.getCurrentLanguage(this.currentloginId) .subscribe( (data) => { @@ -68,6 +65,8 @@ export class AppComponent { sessionStorage.setItem("DefaultLang",this.currentLanguage); } } + + // Whether the submenu expands the identifier get flag () { if(!this.url.indexOf('services')){ return true |