diff options
author | xu ran <xuranyjy@chinamobile.com> | 2020-03-18 11:29:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-18 11:29:03 +0000 |
commit | f2e06f0f4142cf0a2346d5b922f98f5cf2ebbfcf (patch) | |
tree | 7eb0d8d7d00a6601f73085e0bde901086ae25783 /usecaseui-portal/src/app/app.component.html | |
parent | 7536f11ccaf6a2e3e486aed21b50f2a5c17ebdfb (diff) | |
parent | 534586d7a62273a4f094c3cc0785249352ce79f3 (diff) |
Merge "USECASEUI-414 Add Inter-Domain Link provisioning support for MDONS"
Diffstat (limited to 'usecaseui-portal/src/app/app.component.html')
-rw-r--r-- | usecaseui-portal/src/app/app.component.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/usecaseui-portal/src/app/app.component.html b/usecaseui-portal/src/app/app.component.html index 32e3fc08..c8240a7d 100644 --- a/usecaseui-portal/src/app/app.component.html +++ b/usecaseui-portal/src/app/app.component.html @@ -87,17 +87,23 @@ </li> <hr> <!-- network page --> - <li nz-menu-item [ngClass]="{'activeMenuBar': url === 'network'}"> - <a routerLink="network"> + <li nz-submenu [ngClass]="{'activeMenuBar': url.indexOf('network') === 0}" [nzOpen]="network_flag"> <span title> <i> <img - src="{{url === 'network' ? 'assets/images/network-icon-active.png':'assets/images/network-icon.png'}}" + src="{{url.indexOf('network') === 0 ? 'assets/images/network-icon-active.png':'assets/images/network-icon.png'}}" alt="home"> </i> <span> {{"i18nTextDefine_NetworkTopology" | translate}} </span> </span> - </a> + <ul> + <li nz-menu-item [ngClass]="{'activeMenuList': url === 'network/ccvpn-network'}"> + <a routerLink='network/ccvpn-network'> {{"i18nTextDefine_CCVPNNetwork" | translate}} </a> + </li> + <li nz-menu-item [ngClass]="{'activeMenuList': url === 'network/mdons-network'}"> + <a routerLink='network/mdons-network'> {{"i18nTextDefine_MDONSNetwork" | translate}} </a> + </li> + </ul> </li> <hr> <!-- monitor page --> |