blob: 62b011341f591d011f2fa2e85809aae9fe93921b (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
<nz-modal [nzVisible]="showDetail" nzWidth="85%" [nzTitle]="moduleTitle" (nzOnCancel)="handleCancel()"
(nzOnOk)="handleOk()">
<nz-spin [nzSpinning]="isSpinning">
<app-basic-info
[checkDetail]="checkDetail"
[businessRequirement]="businessRequirement"
[NSTinfo]="NSTinfo"
>
</app-basic-info>
<div>
<nz-list class="taskmodel_list" nzBordered [nzHeader]="'匹配共享切片实例:'" [nzFooter]="null" *ngIf="slicingInstances">
<nz-list-item nz-row nzType="flex" nzJustify="start" [nzGutter]="8">
<div nz-col nzSpan="12">
切片实例 ID:
<nz-select
nzShowSearch
[(ngModel)]="selectedServiceId"
(nzOpenChange)="openSlicingInstance($event)"
(nzScrollToBottom)="getNextPageData()"
(ngModelChange)="slicingInstanceChange()"
>
<nz-option
nzCustomContent
*ngFor="let item of slicingInstances.list"
[nzValue]="item.service_instance_id"
[nzLabel]="item.service_instance_id"
>
<span>{{item.service_instance_name + ' -- '}}</span> {{item.service_instance_id}}
</nz-option>
<nz-option *ngIf="slicingInstances.isLoading" nzDisabled nzCustomContent>
<i class="anticon anticon-loading anticon-spin loading-icon"></i>
Loading Data...
</nz-option>
</nz-select>
</div>
<div nz-col nzSpan="8">
切片实例名称:{{ selectedServiceName }}
</div>
<div nz-col nzSpan="4">
<button nz-button nzType="primary" (click)="resetSlicingInstance()">
<i nz-icon class="anticon anticon-delete"></i>
</button>
</div>
</nz-list-item>
<nz-list-item nz-row nzType="flex" nzJustify="start" [nzGutter]="8">
<p class="listitem_subtitle" nz-col nzSpan="24">匹配的共享切片子网实例:</p>
<nz-card *ngFor="let item of slicingSubnet" nzType="inner" nz-col nzSpan="24" [nzTitle]="item.title">
<div nz-row [nzGutter]="8">
<div nz-col nzSpan="12">
切片子网实例 ID:
<nz-select
nzShowSearch
[nzDisabled]="isDisabled"
[(ngModel)]="item.slicingId"
(ngModelChange)="slicingSubnetChange(item)"
(nzOpenChange)="openSubnetInstances($event, item)"
(nzScrollToBottom)="getNextPageSubnet(item)"
>
<nz-option
nzCustomContent
*ngFor="let item of item.instances"
[nzValue]="item.service_instance_id"
[nzLabel]="item.service_instance_id"
>
<span>{{item.service_instance_name + ' -- '}}</span> {{item.service_instance_id}}
</nz-option>
<nz-option *ngIf="item.isLoading" nzDisabled nzCustomContent>
<i class="anticon anticon-loading anticon-spin loading-icon"></i>
Loading Data...
</nz-option>
</nz-select>
</div>
<div nz-col nzSpan="8">
切片子网实例名称:{{item.slicingName}}
</div>
<div nz-col nzSpan="4">
<button nz-button nzType="primary" (click)="restSubnetInstance(item)" [disabled]='isDisabled'
[attr.disabled]='isDisabled?true:undefined'>
<i nz-icon class="anticon anticon-delete"></i>
</button>
<button nz-button nzType="primary" (click)="showParamsModel(item)">
<i nz-icon class="anticon anticon-setting" nzTheme="outline"></i>
</button>
</div>
</div>
</nz-card>
</nz-list-item>
</nz-list>
</div>
</nz-spin>
</nz-modal>
<app-subnet-params-model
[showModel]="isShowParams"
[detailData]="params"
[title]="paramsTitle"
(cancel)="isShowParams=$event"
(paramsDataChange)="changeParams($event)"
>
</app-subnet-params-model>
<app-notification #notification [isServicesList]="false" [parentComponent]="'slicing'"></app-notification>
|