2 [(nzVisible)]="cloudLeasedLineShowFlag"
3 nzTitle="Create Cloud Leased Line"
4 (nzOnCancel)="cancel()"
6 [nzFooter]="modalFooter"
8 <div class="subnet_params_container">
10 <nz-form-item *ngFor="let item of comunicationFormItems; let i = index">
13 [nzRequired]="item.required"
18 <nz-form-control [nzSpan]="10">
19 <div *ngIf="item.type === 'text'">{{cloud_leased_line_info[item.key]}}</div>
21 [nzTitle]="item.scoped && item.scopedText ? item.scopedText : ''"
22 [nzPlacement]="'right'"
30 *ngIf="item.type === 'input'"
31 [(ngModel)]="cloud_leased_line_info[item.key]"
32 [placeholder]="item.placeholder ? item.placeholder : ''"
37 [(ngModel)]="cloud_leased_line_info[item.key]"
38 *ngIf="item.type === 'select'"
43 *ngFor="let option of cloudPointOptions"
47 <div *ngIf="item.type === 'node_select_one'">
49 <span>{{item.rateName}}:</span>
54 [name]="item.rateName"
55 [(ngModel)]="cloud_leased_line_info[item.key].bandwidth"
56 [placeholder]="item.placeholder ? item.placeholder : ''"
60 <span>{{item.nodeName}}:</span>
62 [name]="item.nodeName"
63 [(ngModel)]="cloud_leased_line_info[item.key].name"
68 *ngFor="let option of nodeLists"
78 <ng-template #modalFooter>
79 <button nz-button nzType="default" (click)="cancel()">Cancel</button>
80 <button nz-button nzType="primary" (click)="submit()" [nzLoading]="loading">OK</button>