9ece597ea41d5bf7056d17b13b803ed448b66897
[usecase-ui.git] /
1 <app-basic-info
2         [businessRequirement]="businessRequirement"
3         [NSTinfo]="NSTinfo"
4         [taskModel]="taskModel"
5 >
6 </app-basic-info>
7 <nz-list class="taskmodel_list"  nzBordered [nzHeader]="'Slicing NSI £º'" [nzFooter]="null">
8     <nz-table
9             #basicTable
10             [nzData]="nsiInfo"
11             [nzShowPagination]="false"
12             nzHideOnSinglePage
13     >
14         <thead>
15         <tr>
16             <th>Service Instance Id</th>
17             <th>Service Instance Name</th>
18             <th>Service Type</th>
19             <th>Status</th>
20             <th width="100px">Detail</th>
21         </tr>
22         </thead>
23         <tbody>
24         <ng-template ngFor let-data [ngForOf]="basicTable.data" let-i="index">
25             <tr>
26                 <td>{{ data.nsi_id }}</td>
27                 <td>{{ data.nsi_name }}</td>
28                 <td>{{ data.nsi_type }}</td>
29                 <td>{{ data.nsi_orchestration-status }}</td>
30                 <td>
31                     <a (click)="showdetail(data)">detail</a>
32                 </td>
33             </tr>
34         </ng-template>
35         </tbody>
36     </nz-table>
37 </nz-list>