a5da344e67773ae6411706a76910a1516bca810b
[usecase-ui.git] /
1 <nz-spin [nzSpinning]="isSpinning">
2     <nz-list class="taskmodel_list" nzBordered [nzHeader]="'Carry Slicing Nsi List :'" [nzFooter]="null">
3   <nz-table
4           #nssiTable
5           [nzData]="nsiList"
6           [nzShowPagination]="false"
7           nzHideOnSinglePage
8                 class="model-table-padding"
9   >
10     <thead>
11     <tr>
12       <th>Service Instance Id</th>
13       <th>Service Instance Name</th>
14       <th>Service Type</th>
15       <th>Status</th>
16       <th width="100px">Detail</th>
17     </tr>
18     </thead>
19     <tbody>
20     <ng-template ngFor let-data [ngForOf]="nssiTable.data" let-i="index">
21       <tr>
22         <td>{{ data.service_instance_id }}</td>
23         <td>{{ data.service_instance_name }}</td>
24         <td>{{ data.service_type }}</td>
25         <td>{{ data.orchestration_status }}</td>
26         <td>
27           <a (click)="showSingleNsiDetail(data)">detail</a>
28         </td>
29       </tr>
30     </ng-template>
31     </tbody>
32   </nz-table>
33 </nz-list>
34 </nz-spin>