변수명수정

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

View File

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

View File

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