입금관리 오타 수정
This commit is contained in:
parent
374e98d0c2
commit
45a7baf55a
|
@ -13,7 +13,7 @@ export const deposits = [
|
|||
registrationDate: '2022-06-18 13:14',
|
||||
processDate: '000-0-0 0:0',
|
||||
deposit: 41200000,
|
||||
withdrawal: 19000000,
|
||||
withdraw: 19000000,
|
||||
total: 22200000,
|
||||
gameMoney: 67131,
|
||||
highRank: '[매장]kgon5',
|
||||
|
@ -31,7 +31,7 @@ export const deposits = [
|
|||
registrationDate: '2022-06-13 12:57',
|
||||
processDate: '2022-06-13 12:58',
|
||||
deposit: 200000,
|
||||
withdrawal: 0,
|
||||
withdraw: 0,
|
||||
total: 200000,
|
||||
gameMoney: 0,
|
||||
highRank: '[매장]on04',
|
||||
|
@ -49,7 +49,7 @@ export const deposits = [
|
|||
registrationDate: '2022-06-13 12:56',
|
||||
processDate: '2022-06-13 12:57',
|
||||
deposit: 200000,
|
||||
withdrawal: 0,
|
||||
withdraw: 0,
|
||||
total: 200000,
|
||||
gameMoney: 0,
|
||||
highRank: '[매장]on04',
|
||||
|
|
|
@ -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'">
|
||||
삭제
|
||||
|
@ -211,7 +211,7 @@
|
|||
|
||||
<!-- depositWithdrawal -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.deposit }}원 {{ deposit.withdrawal }}원
|
||||
{{ deposit.deposit }}원 {{ deposit.withdraw }}원
|
||||
{{ deposit.total }}원
|
||||
</div>
|
||||
|
||||
|
@ -252,7 +252,7 @@
|
|||
<!-- bettingInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
베팅리스트
|
||||
배팅리스트
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
export interface Deposit {
|
||||
id: string;
|
||||
rank: string;
|
||||
level: string;
|
||||
nickname: string;
|
||||
paymentDue: number;
|
||||
calculateType: string;
|
||||
accountHolder: string;
|
||||
note: string;
|
||||
registrationDate: string;
|
||||
processDate: string;
|
||||
deposit: number;
|
||||
withdrawal: number;
|
||||
total: number;
|
||||
gameMoney: number;
|
||||
highRank: string;
|
||||
state: string;
|
||||
memberInformation: string;
|
||||
bettingInformation: string;
|
||||
delete: string;
|
||||
id?: string;
|
||||
rank?: string;
|
||||
level?: string;
|
||||
nickname?: string;
|
||||
paymentDue?: number;
|
||||
calculateType?: string;
|
||||
accountHolder?: string;
|
||||
note?: string;
|
||||
registrationDate?: string;
|
||||
processDate?: string;
|
||||
deposit?: number;
|
||||
withdraw?: number;
|
||||
total?: number;
|
||||
gameMoney?: number;
|
||||
highRank?: string;
|
||||
state?: string;
|
||||
memberInformation?: string;
|
||||
bettingInformation?: string;
|
||||
delete?: string;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user