입금관리 오타 수정

This commit is contained in:
이담 정 2022-07-07 02:38:52 +00:00
parent 374e98d0c2
commit 45a7baf55a
3 changed files with 26 additions and 26 deletions

View File

@ -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',

View File

@ -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>

View File

@ -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;
}