feat: add copyright and comments 92/94492/1
authorcyuamber <xuranyjy@chinamobile.com>
Thu, 29 Aug 2019 06:25:42 +0000 (14:25 +0800)
committercyuamber <xuranyjy@chinamobile.com>
Thu, 29 Aug 2019 06:26:01 +0000 (14:26 +0800)
Change-Id: Idfc1bc6476839a4b5514edaa78f5a5121419f8ac
Issue-ID: USECASEUI-307
Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
usecaseui-portal/src/app/app.component.less
usecaseui-portal/src/app/app.component.ts

index ade860b..ed7ad4f 100644 (file)
@@ -1,3 +1,21 @@
+/*
+    Copyright (C) 2019 CMCC, Inc. and others. All rights reserved.
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+
+            http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+*/
+
+
+// left menu bar adaptation
 @media screen and (min-width: 1200px){
     .siderContent{
         height:240px;
index 7306db1..2642b3e 100644 (file)
@@ -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