summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.html
blob: 47bd9e59479efc2dc65d41f06727ed7efe77cc5d (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<nz-list class="taskmodel_list"  nzBordered [nzHeader]="'Carry Slicing Businress List :'" [nzFooter]="null">
  <nz-table
          #businessTable
          [nzData]="businessList"
          [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]="businessTable.data" let-i="index">
      <tr>
        <td>{{ data.service_instance_id }}</td>
        <td>{{ data.service_instance_name }}</td>
        <td>{{ data.service_type }}</td>
        <td>{{ data.service_snssai }}</td>
        <td>{{ data.orchestration_status }}</td>
        <td>
          <a (click)="showBusinessDetail(data)">detail</a>
        </td>
      </tr>
    </ng-template>
    </tbody>
  </nz-table>
</nz-list>
<nz-list class="taskmodel_list"  nzBordered [nzHeader]="'Include Slicing NSSI List :'" [nzFooter]="null">
  <nz-table
          #nssiTable
          [nzData]="nssiList"
          [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.environment_context }}</td>
        <td>{{ data.orchestration_status }}</td>
        <td>
          <a (click)="showNssiDetail(data)">detail</a>
        </td>
      </tr>
    </ng-template>
    </tbody>
  </nz-table>
</nz-list>