This commit is contained in:
2023-11-02 15:53:37 +07:00
parent 136c9a2f6d
commit 21af45bfa6
15 changed files with 108 additions and 233 deletions

View File

@@ -25,7 +25,7 @@
<ng-container matColumnDef="1">
<th mat-header-cell *matHeaderCellDef class="tac">ลำดับ</th>
<td mat-cell *matCellDef="let item; let i = index;" width="150" class="tac">{{getIndex(i)}}</td>
<td mat-cell *matCellDef="let item; let i = index;" width="100" class="tac">{{getIndex(i)}}</td>
</ng-container>
<ng-container matColumnDef="2">
@@ -46,7 +46,7 @@
</ng-container>
<ng-container matColumnDef="5">
<th mat-header-cell *matHeaderCellDef class="tac" width="150">คำนำหน้า</th>
<th mat-header-cell *matHeaderCellDef class="tac" width="100">คำนำหน้า</th>
<td mat-cell *matCellDef="let item" class="tac">{{item.prefix_name}}</td>
</ng-container>
@@ -74,8 +74,8 @@
</td>
</ng-container>
<ng-container matColumnDef="10">
<th mat-header-cell *matHeaderCellDef class="tac" width="150">E-mail</th>
<td mat-cell *matCellDef="let item" class="tac">
<th mat-header-cell *matHeaderCellDef class="tal" width="150">E-mail</th>
<td mat-cell *matCellDef="let item" class="tal">
<div> {{item.email}}</div>
</td>
</ng-container>

View File

@@ -34,7 +34,6 @@ export class ListComponent extends BaseList implements OnChanges {
}
onFilterCard($event) {
// this.filterCard.next($event);
const filterValue = this.query.card;
this.kycList.filter = filterValue.trim().toLowerCase();
}