summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nssi-management/nssi-model/nssi-model.component.html
blob: 6be39ea019d2f5145222db381db61d50b83ad65f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<nz-list class="taskmodel_list"  nzBordered [nzHeader]="'Carry Slicing Nsi List ��'" [nzFooter]="null">
  <nz-table
          #nssiTable
          [nzData]="nsiList"
          [nzShowPagination]="false"
          nzHideOnSinglePage
  >
    <thead>
    <tr>
      <th>Service Instance Id</th>
      <th>Service Instance Name</th>
      <th>Service Type</th>
      <th>Status</th>
      <th width="100px">Detail</th>
    </tr>
    </thead>
    <tbody>
    <ng-template ngFor let-data [ngForOf]="nssiTable.data" let-i="index">
      <tr>
        <td>{{ data.service_instance_id }}</td>
        <td>{{ data.service_instance_name }}</td>
        <td>{{ data.service_type }}</td>
        <td>{{ data.orchestration_status }}</td>
        <td>
          <a (click)="showSingleNsiDetail(data)">detail</a>
        </td>
      </tr>
    </ng-template>
    </tbody>
  </nz-table>
</nz-list>