1 <div class="slicing-resource-table">
3 <div nz-col nzSpan="12" class="task_status">
5 <nz-select nzShowSearch nzPlaceHolder="Select a processing status" [(ngModel)]="selectedValue"
6 (ngModelChange)="getListOfProcessingStatus()">
7 <nz-option *ngFor="let item of statusOptions" [nzLabel]="item" [nzValue]="item"></nz-option>
11 <div class="slicing-resource-table-list">
15 [nzFrontPagination]="false"
17 [nzPageSizeOptions]="[5,10,15,20]"
19 [(nzPageSize)]="pageSize"
20 [(nzPageIndex)]='pageIndex'
22 (nzPageIndexChange)="searchData()"
23 (nzPageSizeChange)="searchData(true)"
27 <th>Service Instance Id</th>
28 <th>Service Instance Name</th>
30 <th>Environment Context</th>
32 <th width="140px">Detail</th>
36 <ng-template ngFor let-data [ngForOf]="nsiTable.data" let-i="index">
38 <td>{{ data.service_instance_id }}</td>
39 <td>{{ data.service_instance_name }}</td>
40 <td>{{ data.service_type }}</td>
41 <td>{{data.environment_context}}</td>
42 <td>{{data.orchestration_status}}</td>
44 <a (click)="showdetail(data)">View Detail</a>