7 (click)="cloudLeasedLineShow()"
15 (click)="smartCloudLeasedLineShow()"
20 <div class="slicing-resource-table-list">
22 #basicTable [nzData]="listOfData"
23 [nzFrontPagination]="false"
25 [nzPageSizeOptions]="[5,10,15,20]"
27 [(nzPageSize)]="pageSize"
28 [(nzPageIndex)]='pageIndex'
30 (nzPageIndexChange)="searchData()"
31 (nzPageSizeChange)="searchData()"
35 <th nzWidth="6%">No</th>
36 <th nzWidth="15%">Communication Service Name</th>
37 <th nzWidth="10%">Intent Instance ID</th>
38 <th nzWidth="6%">Status</th>
39 <th nzWidth="20%">{{"i18nTextDefine_Operationbutton" | translate}}</th>
43 <ng-template ngFor let-data [ngForOf]="basicTable.data" let-i="index">
46 <td>{{ data.name }}</td>
47 <td>{{ data.instanceId }}</td>
48 <td>{{ statusObj[data.status] }}</td>
54 (click)="goMonitorService()"
59 *ngIf="data.status === '3'"
63 (click)="activeCloudLeasedLine(data)"
68 *ngIf="data.status === '1'"
72 (click)="inactiveCloudLeasedLine(data)"
80 (click)="deleteCloudLeasedLine(data)"
90 <app-smart-cloud-leased-modal
91 [samrtCloudLeasedLineShowFlag]="smartCloudLeasedLineShowFlag"
92 (resolveEmitter)="smartCloudLeasedLineClose($event)"
93 ></app-smart-cloud-leased-modal>
94 <app-cloud-leased-line-modal
95 [modelParams]="resolveResult"
96 [cloudLeasedLineShowFlag]="cloudLeasedLineShowFlag"
97 (cancelEmitter)="cloudLeasedLineClose()"
98 ></app-cloud-leased-line-modal>