1 <nz-list class="taskmodel_list" nzBordered [nzHeader]="'Carry Slicing Businress List :'" [nzFooter]="null">
4 [nzData]="businessList"
5 [nzShowPagination]="false"
10 <th>Service Instance Id</th>
11 <th>Service Instance Name</th>
14 <th width="100px">Detail</th>
18 <ng-template ngFor let-data [ngForOf]="businessTable.data" let-i="index">
20 <td>{{ data.service_instance_id }}</td>
21 <td>{{ data.service_instance_name }}</td>
22 <td>{{ data.service_type }}</td>
23 <td>{{ data.service_snssai }}</td>
24 <td>{{ data.orchestration_status }}</td>
26 <a (click)="showBusinessDetail(data)">detail</a>
33 <nz-list class="taskmodel_list" nzBordered [nzHeader]="'Include Slicing NSSI List :'" [nzFooter]="null">
37 [nzShowPagination]="false"
42 <th>Service Instance Id</th>
43 <th>Service Instance Name</th>
46 <th width="100px">Detail</th>
50 <ng-template ngFor let-data [ngForOf]="nssiTable.data" let-i="index">
52 <td>{{ data.service_instance_id }}</td>
53 <td>{{ data.service_instance_name }}</td>
54 <td>{{ data.service_type }}</td>
55 <td>{{ data.environment_context }}</td>
56 <td>{{ data.orchestration_status }}</td>
58 <a (click)="showNssiDetail(data)">detail</a>