summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-model/slicing-business-model.component.html
blob: 5a11ab1d2be0b3fcae43387e7d36d76a819d521e (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
<nz-spin [nzSpinning]="isSpinning">
<app-basic-info
        [businessRequirement]="businessRequirement"
        [NSTinfo]="NSTinfo"
        [taskModel]="taskModel"
>
</app-basic-info>
    <nz-list class="taskmodel_list" nzBordered [nzHeader]="'Slicing NSI :'" [nzFooter]="null">
    <nz-table
            #basicTable
            [nzData]="nsiInfo"
            [nzShowPagination]="false"
            nzHideOnSinglePage
                class="model-table-padding"
    >
        <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]="basicTable.data" let-i="index">
            <tr>
                <td>{{ data.nsi_id }}</td>
                <td>{{ data.nsi_name }}</td>
                <td>{{ data.nsi_type }}</td>
                <td>{{ data.nsi_orchestration-status }}</td>
                <td>
                    <a (click)="showdetail(data)">detail</a>
                </td>
            </tr>
        </ng-template>
        </tbody>
    </nz-table>
</nz-list>
</nz-spin>