summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/services/sotn-management/sotn-management.component.html
blob: 12fcb851278d23dcd444158d7d985571d5c9f7fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<nz-tabset (nzSelectChange)="handleTabChange($event)" class="slicing">
  <nz-tab nzTitle="Order Service">
    <app-order-service
            *ngIf="currentTab ==='Order Service'"
    ></app-order-service>
  </nz-tab>
  <nz-tab nzTitle="Manage Service" >
    <app-manage-service
            *ngIf="currentTab ==='Manage Service'"
    ></app-manage-service>
  </nz-tab>
  <nz-tab nzTitle="Monitor Service">
    <app-monitor-service
            *ngIf="currentTab ==='Monitor Service'"
    ></app-monitor-service>
  </nz-tab>
</nz-tabset>