입금관리 오타 수정

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', registrationDate: '2022-06-18 13:14',
processDate: '000-0-0 0:0', processDate: '000-0-0 0:0',
deposit: 41200000, deposit: 41200000,
withdrawal: 19000000, withdraw: 19000000,
total: 22200000, total: 22200000,
gameMoney: 67131, gameMoney: 67131,
highRank: '[매장]kgon5', highRank: '[매장]kgon5',
@ -31,7 +31,7 @@ export const deposits = [
registrationDate: '2022-06-13 12:57', registrationDate: '2022-06-13 12:57',
processDate: '2022-06-13 12:58', processDate: '2022-06-13 12:58',
deposit: 200000, deposit: 200000,
withdrawal: 0, withdraw: 0,
total: 200000, total: 200000,
gameMoney: 0, gameMoney: 0,
highRank: '[매장]on04', highRank: '[매장]on04',
@ -49,7 +49,7 @@ export const deposits = [
registrationDate: '2022-06-13 12:56', registrationDate: '2022-06-13 12:56',
processDate: '2022-06-13 12:57', processDate: '2022-06-13 12:57',
deposit: 200000, deposit: 200000,
withdrawal: 0, withdraw: 0,
total: 200000, total: 200000,
gameMoney: 0, gameMoney: 0,
highRank: '[매장]on04', highRank: '[매장]on04',

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'">
삭제 삭제
@ -211,7 +211,7 @@
<!-- depositWithdrawal --> <!-- depositWithdrawal -->
<div class="hidden sm:block truncate"> <div class="hidden sm:block truncate">
{{ deposit.deposit }}원 {{ deposit.withdrawal }}원 {{ deposit.deposit }}원 {{ deposit.withdraw }}원
{{ deposit.total }}원 {{ deposit.total }}원
</div> </div>
@ -252,7 +252,7 @@
<!-- bettingInformation --> <!-- bettingInformation -->
<div class="hidden sm:block truncate"> <div class="hidden sm:block truncate">
<button mat-flat-button [color]="'primary'"> <button mat-flat-button [color]="'primary'">
팅리스트 팅리스트
</button> </button>
</div> </div>

View File

@ -1,21 +1,21 @@
export interface Deposit { export interface Deposit {
id: string; id?: string;
rank: string; rank?: string;
level: string; level?: string;
nickname: string; nickname?: string;
paymentDue: number; paymentDue?: number;
calculateType: string; calculateType?: string;
accountHolder: string; accountHolder?: string;
note: string; note?: string;
registrationDate: string; registrationDate?: string;
processDate: string; processDate?: string;
deposit: number; deposit?: number;
withdrawal: number; withdraw?: number;
total: number; total?: number;
gameMoney: number; gameMoney?: number;
highRank: string; highRank?: string;
state: string; state?: string;
memberInformation: string; memberInformation?: string;
bettingInformation: string; bettingInformation?: string;
delete: string; delete?: string;
} }