변수명수정

This commit is contained in:
이담 정 2022-08-10 09:03:02 +00:00
parent b6cbe8971a
commit ed056768b3
3 changed files with 10 additions and 10 deletions

View File

@ -11,11 +11,11 @@ export const deposits = [
calculateType: '롤링',
accountHolder: '광주은행2sss',
note: '@',
registrationDate: '2022-06-18 13:14',
registDate: '2022-06-18 13:14',
processDate: '000-0-0 0:0',
deposit: 41200000,
withdraw: 19000000,
total: 22200000,
totalMoney: 22200000,
gameMoney: 67131,
highRank: '[매장]kgon5',
state: '신청',
@ -30,11 +30,11 @@ export const deposits = [
calculateType: '롤링',
accountHolder: '가가가',
note: '',
registrationDate: '2022-06-13 12:57',
registDate: '2022-06-13 12:57',
processDate: '2022-06-13 12:58',
deposit: 200000,
withdraw: 0,
total: 200000,
totalMoney: 200000,
gameMoney: 0,
highRank: '[매장]on04',
state: '완료',
@ -49,11 +49,11 @@ export const deposits = [
calculateType: '롤링',
accountHolder: '가가가',
note: '',
registrationDate: '2022-06-13 12:56',
registDate: '2022-06-13 12:56',
processDate: '2022-06-13 12:57',
deposit: 200000,
withdraw: 0,
total: 200000,
totalMoney: 200000,
gameMoney: 0,
highRank: '[매장]on04',
state: '완료',

View File

@ -175,7 +175,7 @@
<div>{{ deposit.note }}</div>
<div>{{ deposit.depositAmount }}</div>
<div class="hidden md:block">
{{ deposit.registrationDate }}
{{ deposit.registDate }}
<hr style="margin: 7px 0px" />
{{ deposit.processDate }}
</div>
@ -184,7 +184,7 @@
<hr style="margin: 7px 0px" />
출금{{ deposit.withdraw }}
<hr style="margin: 7px 0px" />
계{{ deposit.total }}
계{{ deposit.totalMoney }}
</div>
<div class="hidden md:block">
{{ deposit.gameMoney }}

View File

@ -8,11 +8,11 @@ export interface Deposit {
calculateType?: string;
accountHolder?: string;
note?: string;
registrationDate?: string;
registDate?: string;
processDate?: string;
deposit?: number;
withdraw?: number;
total?: number;
totalMoney?: number;
gameMoney?: number;
highRank?: string;
state?: string;