1 <nz-spin [nzSpinning]="isSpinning">
2 <nz-list class="taskmodel_list" nzBordered [nzHeader]="'Carry Slicing Businress List :'" [nzFooter]="null">
5 [nzData]="businessList"
6 [nzShowPagination]="false"
8 class="model-table-padding"
12 <th>Service Instance Id</th>
13 <th>Service Instance Name</th>
17 <th width="100px">Detail</th>
21 <ng-template ngFor let-data [ngForOf]="businessTable.data" let-i="index">
23 <td>{{ data.service_instance_id }}</td>
24 <td>{{ data.service_instance_name }}</td>
25 <td>{{ data.service_type }}</td>
26 <td>{{ data.service_snssai }}</td>
27 <td>{{ data.orchestration_status }}</td>
29 <a (click)="showBusinessDetail(data)">detail</a>
36 <nz-list class="taskmodel_list" nzBordered [nzHeader]="'Include Slicing NSSI List :'" [nzFooter]="null">
40 [nzShowPagination]="false"
42 class="model-table-padding"
46 <th>Service Instance Id</th>
47 <th>Service Instance Name</th>
49 <th>Environment Context</th>
51 <th width="100px">Detail</th>
55 <ng-template ngFor let-data [ngForOf]="nssiTable.data" let-i="index">
57 <td>{{ data.service_instance_id }}</td>
58 <td>{{ data.service_instance_name }}</td>
59 <td>{{ data.service_type }}</td>
60 <td>{{ data.environment_context }}</td>
61 <td>{{ data.orchestration_status }}</td>
63 <a (click)="showNssiDetail(data)">detail</a>