입금관리 리스트 수정

This commit is contained in:
이담 정 2022-07-06 01:44:15 +00:00
parent 279c7e1bc0
commit c68b5e394f
2 changed files with 101 additions and 99 deletions

View File

@ -79,7 +79,7 @@ export class BankDepositMockApi {
// If the requested page number is bigger than // If the requested page number is bigger than
// the last possible page number, return null for // the last possible page number, return null for
// users but also send the last possible page so // deposits but also send the last possible page so
// the app can navigate to there // the app can navigate to there
if (page > lastPage) { if (page > lastPage) {
deposits = null; deposits = null;
@ -120,7 +120,7 @@ export class BankDepositMockApi {
// Get the id from the params // Get the id from the params
const id = request.params.get('id'); const id = request.params.get('id');
// Clone the users // Clone the deposits
const deposits = cloneDeep(this._deposits); const deposits = cloneDeep(this._deposits);
// Find the deposit // Find the deposit

View File

@ -23,7 +23,7 @@
<mat-select placeholder="내용"> <mat-select placeholder="내용">
<mat-option value="">카지노콤프</mat-option> <mat-option value="">카지노콤프</mat-option>
<mat-option value="">슬롯콤프</mat-option> <mat-option value="">슬롯콤프</mat-option>
<mat-option value="">팅콤프</mat-option> <mat-option value="">팅콤프</mat-option>
<mat-option value="">첫충콤프</mat-option> <mat-option value="">첫충콤프</mat-option>
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
@ -135,7 +135,7 @@
class="hidden sm:block" class="hidden sm:block"
[mat-sort-header]="'bettingInfomation'" [mat-sort-header]="'bettingInfomation'"
> >
팅정보 팅정보
</div> </div>
<div class="hidden sm:block" [mat-sort-header]="'delete'"> <div class="hidden sm:block" [mat-sort-header]="'delete'">
삭제 삭제
@ -169,7 +169,6 @@
<div class="hidden sm:block truncate"> <div class="hidden sm:block truncate">
LV.{{ deposit.level }} LV.{{ deposit.level }}
</div> </div>
</div>
<!-- id --> <!-- id -->
<div class="hidden sm:block truncate"> <div class="hidden sm:block truncate">
{{ deposit.id }} {{ deposit.id }}
@ -245,7 +244,9 @@
<!-- memberInformation --> <!-- memberInformation -->
<div class="hidden sm:block truncate"> <div class="hidden sm:block truncate">
<button mat-flat-button [color]="'primary'">회원정보</button> <button mat-flat-button [color]="'primary'">
회원정보
</button>
</div> </div>
<!-- bettingInformation --> <!-- bettingInformation -->
@ -353,6 +354,7 @@
></mat-icon> ></mat-icon>
</button> </button>
</div> --> </div> -->
</div>
</ng-container> </ng-container>
</ng-container> </ng-container>
</div> </div>