|
@@ -22,24 +22,22 @@
|
|
|
</div>
|
|
|
</form>
|
|
|
|
|
|
+<!-- nzAlign nzBordered -->
|
|
|
<nz-table
|
|
|
#rowSelectTable
|
|
|
+ nzSize="small"
|
|
|
+ class="tableTdPadding"
|
|
|
[nzData]="selectData"
|
|
|
[nzTotal]="page.total"
|
|
|
[nzPageIndex]="page.current"
|
|
|
[nzFrontPagination]="false"
|
|
|
(nzPageIndexChange)="pageIndexChange($event)"
|
|
|
[nzLoading]="isSpinning"
|
|
|
- nzBordered
|
|
|
- nzAlign
|
|
|
(nzCurrentPageDataChange)="currentPageDataChange($event)"
|
|
|
-
|
|
|
>
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th
|
|
|
-
|
|
|
- ></th>
|
|
|
+ <th></th>
|
|
|
<th>{{ 'customer.code' | translate }}</th>
|
|
|
<th>{{ 'customer.name' | translate }}</th>
|
|
|
<th>{{ 'customer.shortName' | translate }}</th>
|
|
@@ -49,10 +47,7 @@
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
<tr *ngFor="let data of rowSelectTable.data">
|
|
|
- <td
|
|
|
- nzShowCheckbox
|
|
|
- [(nzChecked)]="mapOfCheckedId[data.id]"
|
|
|
- (nzCheckedChange)="refreshStatus()"></td>
|
|
|
+ <td nzShowCheckbox [(nzChecked)]="mapOfCheckedId[data.id]" (nzCheckedChange)="refreshStatus()"></td>
|
|
|
<td>{{ data.code }}</td>
|
|
|
<td>{{ data.name }}</td>
|
|
|
<td>{{ data.shortName }}</td>
|