1 <nz-spin [nzSpinning]="isSpinning">
2 <nz-list class="taskmodel_list" nzBordered [nzHeader]="'Related Slicing Business List :'" [nzFooter]="null">
3 <nz-table #businessTable [nzData]="businessList" [nzShowPagination]="false" nzHideOnSinglePage
4 class="model-table-padding">
7 <th>Service Instance Id</th>
8 <th>Service Instance Name</th>
10 <th width="90px">S-NSSAI</th>
11 <th width="110px">Status</th>
12 <th width="110px">Detail</th>
16 <ng-template ngFor let-data [ngForOf]="businessTable.data" let-i="index">
18 <td>{{ data.service_instance_id }}</td>
19 <td>{{ data.service_instance_name }}</td>
20 <td>{{ data.service_type }}</td>
21 <td>{{ data.service_snssai }}</td>
22 <td>{{ data.orchestration_status }}</td>
24 <a (click)="showBusinessDetail(data)">View Detail</a>
31 <nz-list class="taskmodel_list taskmodel_list-margin" nzBordered [nzHeader]="'Related Slicing NSSI List :'" [nzFooter]="null">
32 <nz-table #nssiTable [nzData]="nssiList" [nzShowPagination]="false" nzHideOnSinglePage class="model-table-padding">
35 <th>Service Instance Id</th>
36 <th>Service Instance Name</th>
38 <th width="85px">Context</th>
39 <th width="110px">Status</th>
40 <th width="110px">Detail</th>
44 <ng-template ngFor let-data [ngForOf]="nssiTable.data" let-i="index">
46 <td>{{ data.service_instance_id }}</td>
47 <td>{{ data.service_instance_name }}</td>
48 <td>{{ data.service_type }}</td>
49 <td>{{ data.environment_context }}</td>
50 <td>{{ data.orchestration_status }}</td>
52 <a (click)="showNssiDetail(data)">View Detail</a>