47bd9e59479efc2dc65d41f06727ed7efe77cc5d
[usecase-ui.git] /
1 <nz-list class="taskmodel_list"  nzBordered [nzHeader]="'Carry Slicing Businress List :'" [nzFooter]="null">
2   <nz-table
3           #businessTable
4           [nzData]="businessList"
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]="businessTable.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.service_snssai }}</td>
24         <td>{{ data.orchestration_status }}</td>
25         <td>
26           <a (click)="showBusinessDetail(data)">detail</a>
27         </td>
28       </tr>
29     </ng-template>
30     </tbody>
31   </nz-table>
32 </nz-list>
33 <nz-list class="taskmodel_list"  nzBordered [nzHeader]="'Include Slicing NSSI List :'" [nzFooter]="null">
34   <nz-table
35           #nssiTable
36           [nzData]="nssiList"
37           [nzShowPagination]="false"
38           nzHideOnSinglePage
39   >
40     <thead>
41     <tr>
42       <th>Service Instance Id</th>
43       <th>Service Instance Name</th>
44       <th>Service Type</th>
45       <th>Status</th>
46       <th width="100px">Detail</th>
47     </tr>
48     </thead>
49     <tbody>
50     <ng-template ngFor let-data [ngForOf]="nssiTable.data" let-i="index">
51       <tr>
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>
57         <td>
58           <a (click)="showNssiDetail(data)">detail</a>
59         </td>
60       </tr>
61     </ng-template>
62     </tbody>
63   </nz-table>
64 </nz-list>