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 <nz-option *ngFor="let item of statusOptions" [nzLabel]="item" [nzValue]="item"></nz-option>
14 [nzFrontPagination]="false"
15 [nzPageSizeOptions]="[5,10,15,20]"
17 [(nzPageSize)]="pageSize"
18 [(nzPageIndex)]='pageIndex'
23 <th>Service Instance Id</th>
24 <th>Service Instance Name</th>
27 <th width="140px">Detail</th>
31 <ng-template ngFor let-data [ngForOf]="nsiTable.data" let-i="index">
33 <td>{{ data.service_instance_id }}</td>
34 <td>{{ data.service_instance_name }}</td>
35 <td>{{ data.service_type }}</td>
36 <td>{{data.orchestration_status}}</td>
38 <a (click)="showdetail(data)">detail</a>