bug fixed

This commit is contained in:
Park Byung Eun 2022-08-17 01:57:05 +00:00
parent 18ab72488e
commit 6bb671d3a5
2 changed files with 73 additions and 66 deletions

View File

@ -35,6 +35,24 @@
</div> </div>
<!-- Search --> <!-- Search -->
<div class="flex items-center mt-2 mb-2 ml-6">
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
환전처리
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
대기처리
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'warn'">
환전취소
</button>
</div>
</div>
<hr style="margin: 7px 0px" />
<div <div
*ngIf="__isSearchOpened" *ngIf="__isSearchOpened"
class="relative flex flex-col sm:flex-row flex-0 sm:items-center sm:justify-between py-4 px-6 md:px-8 border-b" class="relative flex flex-col sm:flex-row flex-0 sm:items-center sm:justify-between py-4 px-6 md:px-8 border-b"
@ -91,21 +109,6 @@
</div> </div>
<!-- Main --> <!-- Main -->
<div class="flex flex-auto overflow-hidden"> <div class="flex flex-auto overflow-hidden">
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
환전처리
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
대기처리
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'warn'">
환전취소
</button>
</div>
<!-- Products list --> <!-- Products list -->
<div <div
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto" class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
@ -120,31 +123,44 @@
<div> <div>
<mat-checkbox></mat-checkbox> <mat-checkbox></mat-checkbox>
</div> </div>
<div>상부</div>
<div> <div>
구분
<hr style="margin: 7px 0px" />
아이디 아이디
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
닉네임 닉네임
</div> </div>
<div>
등급
<hr style="margin: 7px 0px" />
레벨
<hr style="margin: 7px 0px" />
상태
</div>
<div class="hidden sm:block">예금주</div>
<div>정산종류</div>
<div>비고</div>
<div>환전신청금액</div> <div>환전신청금액</div>
<div>정산종류</div>
<div>
은행명
<hr style="margin: 7px 0px" />
계좌번호
<hr style="margin: 7px 0px" />
예금주
</div>
<div>비고</div>
<div class="hidden md:block"> <div class="hidden md:block">
등록날짜 등록날짜
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
처리날짜 처리날짜
</div> </div>
<div class="hidden md:block">입금출금</div> <div class="hidden md:block">
<div class="hidden lg:block">회원정보</div> 입금
<div class="hidden lg:block">배팅정보</div> <hr style="margin: 7px 0px" />
출금
<hr style="margin: 7px 0px" />
보유금
</div>
<div class="hidden lg:block">
상위
<hr style="margin: 7px 0px" />
회원정보
<hr style="margin: 7px 0px" />
배팅정보
</div>
<div class="hidden lg:block">상태</div>
<div class="hidden lg:block">삭제</div> <div class="hidden lg:block">삭제</div>
</div> </div>
<!-- Rows --> <!-- Rows -->
@ -158,8 +174,10 @@
<div> <div>
<mat-checkbox></mat-checkbox> <mat-checkbox></mat-checkbox>
</div> </div>
<div>{{ withdraw.highRank }}</div>
<div> <div>
{{ withdraw.highRank }}
<hr style="margin: 7px 0px" />
<div <div
(click)="viewUserDetail(withdraw.id!)" (click)="viewUserDetail(withdraw.id!)"
style="cursor: pointer" style="cursor: pointer"
@ -169,32 +187,43 @@
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
{{ withdraw.nickname }} {{ withdraw.nickname }}
</div> </div>
<!--환전신청금액-->
<div>{{ withdraw.exchangeApplicationAmount }}</div>
<!--정산종류-->
<div>{{ withdraw.calculateType }}</div>
<div> <div>
<!-- 은행명, 계좌번호, 예금주-->
{{ withdraw.rank }} {{ withdraw.rank }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
LV{{ withdraw.level }} LV{{ withdraw.level }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
{{ withdraw.state }}
</div>
<div class="hidden sm:block">
{{ withdraw.accountHolder }} {{ withdraw.accountHolder }}
</div> </div>
<div>{{ withdraw.calculateType }}</div> <!-- 비고 -->
<div>{{ withdraw.note }}</div> <div>{{ withdraw.note }}</div>
<div>{{ withdraw.exchangeApplicationAmount }}</div>
<div class="hidden md:block"> <div class="hidden md:block">
{{ withdraw.registrationDate }} {{ withdraw.registrationDate }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
{{ withdraw.processDate }} {{ withdraw.processDate }}
</div> </div>
<div class="hidden md:block"> <div class="hidden md:block">
입금{{ withdraw.deposit }} {{ withdraw.deposit }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
출금{{ withdraw.withdraw }} {{ withdraw.withdraw }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
{{ withdraw.totalMoney }} {{ withdraw.totalMoney }}
</div> </div>
<div class="hidden lg:block"> <div class="hidden lg:block">
<button
mat-flat-button
class="bet-mat-small-8"
[color]="'primary'"
>
{{ withdraw.highRank }}
</button>
<hr style="margin: 7px 0px" />
<button <button
mat-flat-button mat-flat-button
class="bet-mat-small-8" class="bet-mat-small-8"
@ -202,25 +231,18 @@
> >
회원정보 회원정보
</button> </button>
</div> <hr style="margin: 7px 0px" />
<div class="hidden lg:block">
<button <button
mat-flat-button mat-flat-button
class="bet-mat-small-8" class="bet-mat-small-8"
[color]="'primary'" [color]="'primary'"
> >
배팅정보 배팅리스트
</button>
</div>
<div class="hidden lg:block">
<button
mat-flat-button
class="bet-mat-small-8"
[color]="'primary'"
>
취소
</button> </button>
</div> </div>
<div class="hidden lg:block">완료</div>
<div class="hidden lg:block">삭제</div>
</div> </div>
</ng-container> </ng-container>
</ng-container> </ng-container>
@ -246,20 +268,5 @@
</div> </div>
</ng-template> </ng-template>
</div> </div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
환전처리
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'primary'">
대기처리
</button>
</div>
<div>
<button mat-flat-button class="bet-mat-small-8" [color]="'warn'">
환전취소
</button>
</div>
</div> </div>
</div> </div>

View File

@ -52,7 +52,7 @@ import { Router } from '@angular/router';
} }
@screen lg { @screen lg {
grid-template-columns: 60px 60px auto 112px 96px 96px 72px; grid-template-columns: 40px 140px auto 80px 140px 40px 120px 120px 120px 40px 40px;
} }
} }
`, `,