1 <div class="intent-resource_tab">
2 <div class="intent-resource-table-list">
4 #basicTable [nzData]="listOfData"
5 [nzFrontPagination]="false"
7 [nzPageSizeOptions]="[5,10,15,20]"
9 [(nzPageSize)]="pageSize"
10 [(nzPageIndex)]='pageIndex'
12 (nzPageIndexChange)="searchData()"
13 (nzPageSizeChange)="searchData()"
14 [nzScroll]="{ x: '1500px' }"
19 <th [nzLeft]="true">No</th>
21 <th>Intent Source</th>
23 <th nzEllipsis>Intent Content</th>
24 <th>Intent Config</th>
25 <th>Business Instance</th>
26 <th [nzRight]="true" [nzWidth]="300"></th>
30 <ng-template ngFor let-data [ngForOf]="basicTable.data" let-i="index">
32 <td [nzLeft]="true">{{i+1}}</td>
33 <td>{{ data.intentName }}</td>
34 <td>{{ data.intentSource }}</td>
35 <td>{{ data.customer }}</td>
36 <td [title]="data.intentContent" nzEllipsis>
37 {{ data.intentContent }}
39 <td>{{ data.intentConfig }}</td>
40 <td>{{ data.businessInstance }}</td>
46 (click)="verificationIntentionInstance(data)"
54 (click)="deleteIntentionInstance(data)"