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