입금관리 리스트 수정
This commit is contained in:
parent
279c7e1bc0
commit
c68b5e394f
|
@ -79,7 +79,7 @@ export class BankDepositMockApi {
|
|||
|
||||
// If the requested page number is bigger than
|
||||
// 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
|
||||
if (page > lastPage) {
|
||||
deposits = null;
|
||||
|
@ -120,7 +120,7 @@ export class BankDepositMockApi {
|
|||
// Get the id from the params
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Clone the users
|
||||
// Clone the deposits
|
||||
const deposits = cloneDeep(this._deposits);
|
||||
|
||||
// Find the deposit
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<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-select>
|
||||
</mat-form-field>
|
||||
|
@ -135,7 +135,7 @@
|
|||
class="hidden sm:block"
|
||||
[mat-sort-header]="'bettingInfomation'"
|
||||
>
|
||||
배팅정보
|
||||
베팅정보
|
||||
</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'delete'">
|
||||
삭제
|
||||
|
@ -169,98 +169,99 @@
|
|||
<div class="hidden sm:block truncate">
|
||||
LV.{{ deposit.level }}
|
||||
</div>
|
||||
</div>
|
||||
<!-- id -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.id }}
|
||||
</div>
|
||||
<!-- id -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.id }}
|
||||
</div>
|
||||
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.nickname }}
|
||||
</div>
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.nickname }}
|
||||
</div>
|
||||
|
||||
<!-- paymentDue -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.paymentDue }}원
|
||||
</div>
|
||||
<!-- paymentDue -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.paymentDue }}원
|
||||
</div>
|
||||
|
||||
<!-- calculateType -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.calculateType }}
|
||||
</div>
|
||||
<!-- calculateType -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.calculateType }}
|
||||
</div>
|
||||
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.accountHolder }}
|
||||
</div>
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.accountHolder }}
|
||||
</div>
|
||||
|
||||
<!-- note -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.note }}
|
||||
</div>
|
||||
<!-- note -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.note }}
|
||||
</div>
|
||||
|
||||
<!-- registrationDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.registrationDate }}
|
||||
</div>
|
||||
<!-- registrationDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.registrationDate }}
|
||||
</div>
|
||||
|
||||
<!-- processDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.processDate }}
|
||||
</div>
|
||||
<!-- processDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.processDate }}
|
||||
</div>
|
||||
|
||||
<!-- depositWithdrawal -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.deposit }}원 {{ deposit.withdrawal }}원
|
||||
{{ deposit.total }}원
|
||||
</div>
|
||||
<!-- depositWithdrawal -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.deposit }}원 {{ deposit.withdrawal }}원
|
||||
{{ deposit.total }}원
|
||||
</div>
|
||||
|
||||
<!-- gameMoney -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.gameMoney }}
|
||||
</div>
|
||||
<!-- gameMoney -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.gameMoney }}
|
||||
</div>
|
||||
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- highRank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ deposit.highRank }}
|
||||
</button>
|
||||
</div>
|
||||
<!-- highRank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ deposit.highRank }}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.state }}
|
||||
</div>
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.state }}
|
||||
</div>
|
||||
|
||||
<!-- memberInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">회원정보</button>
|
||||
</div>
|
||||
<!-- memberInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
회원정보
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- bettingInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
베팅리스트
|
||||
</button>
|
||||
</div>
|
||||
<!-- bettingInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
베팅리스트
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- delete -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">취소</button>
|
||||
</div>
|
||||
<!-- Image -->
|
||||
<!-- <div class="flex items-center">
|
||||
<!-- delete -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">취소</button>
|
||||
</div>
|
||||
<!-- Image -->
|
||||
<!-- <div class="flex items-center">
|
||||
<div
|
||||
class="relative flex flex-0 items-center justify-center w-12 h-12 mr-6 rounded overflow-hidden border"
|
||||
>
|
||||
|
@ -279,40 +280,40 @@
|
|||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- SKU -->
|
||||
<!-- <div class="hidden md:block truncate">
|
||||
<!-- SKU -->
|
||||
<!-- <div class="hidden md:block truncate">
|
||||
{{ user.sku }}
|
||||
</div> -->
|
||||
|
||||
<!-- Name -->
|
||||
<!-- <div class="truncate">
|
||||
<!-- Name -->
|
||||
<!-- <div class="truncate">
|
||||
{{ user.name }}
|
||||
</div> -->
|
||||
|
||||
<!-- Price -->
|
||||
<!-- <div class="hidden sm:block">
|
||||
<!-- Price -->
|
||||
<!-- <div class="hidden sm:block">
|
||||
{{ user.price | currency: "USD":"symbol":"1.2-2" }}
|
||||
</div> -->
|
||||
|
||||
<!-- Stock -->
|
||||
<!-- <div class="hidden lg:flex items-center">
|
||||
<!-- Stock -->
|
||||
<!-- <div class="hidden lg:flex items-center">
|
||||
<div class="min-w-4">{{ user.stock }}</div> -->
|
||||
<!-- Low stock -->
|
||||
<!-- <div
|
||||
<!-- Low stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-red-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock < 20"
|
||||
>
|
||||
<div class="flex w-full h-1/3 bg-red-600"></div>
|
||||
</div> -->
|
||||
<!-- Medium stock -->
|
||||
<!-- <div
|
||||
<!-- Medium stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-orange-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 20 && user.stock < 30"
|
||||
>
|
||||
<div class="flex w-full h-2/4 bg-orange-400"></div>
|
||||
</div> -->
|
||||
<!-- High stock -->
|
||||
<!-- <div
|
||||
<!-- High stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-green-100 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 30"
|
||||
>
|
||||
|
@ -320,8 +321,8 @@
|
|||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- Active -->
|
||||
<!-- <div class="hidden lg:block">
|
||||
<!-- Active -->
|
||||
<!-- <div class="hidden lg:block">
|
||||
<ng-container *ngIf="user.active">
|
||||
<mat-icon
|
||||
class="text-green-400 icon-size-5"
|
||||
|
@ -336,8 +337,8 @@
|
|||
</ng-container>
|
||||
</div> -->
|
||||
|
||||
<!-- Details button -->
|
||||
<!-- <div>
|
||||
<!-- Details button -->
|
||||
<!-- <div>
|
||||
<button
|
||||
class="min-w-10 min-h-7 h-7 px-2 leading-6"
|
||||
mat-stroked-button
|
||||
|
@ -353,6 +354,7 @@
|
|||
></mat-icon>
|
||||
</button>
|
||||
</div> -->
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue
Block a user