출금관리 변수명수정

This commit is contained in:
이담 정 2022-08-10 09:58:22 +00:00
parent 6cea6ab5cf
commit 66cad9bb8e
3 changed files with 15 additions and 15 deletions

View File

@ -5,15 +5,15 @@ export const withdraws = [
rank: '회원', rank: '회원',
id: 'aa100', id: 'aa100',
nickname: 'aa100', nickname: 'aa100',
applicationForCurrencyExchange: 14000000, exchangeApplicationAmount: 14000000,
calculateType: '롤링', calculateType: '롤링',
accountHolder: '광주은행121212121212sss', accountHolder: '광주은행121212121212sss',
note: '@', note: '@',
registrationDate: '2022-06-10 16:51', registDate: '2022-06-10 16:51',
processDate: '2022-06-10 16:51', processDate: '2022-06-10 16:51',
deposit: 41200000, deposit: 41200000,
withdraw: 19000000, withdraw: 19000000,
total: 22200000, totalMoney: 22200000,
highRank: '[매장]kgon5', highRank: '[매장]kgon5',
state: '완료', state: '완료',
}, },
@ -21,15 +21,15 @@ export const withdraws = [
rank: '회원', rank: '회원',
id: 'aa100', id: 'aa100',
nickname: 'aa100', nickname: 'aa100',
applicationForCurrencyExchange: 5000000, exchangeApplicationAmount: 5000000,
calculateType: '롤링', calculateType: '롤링',
accountHolder: '광주은행121212121212sss', accountHolder: '광주은행121212121212sss',
note: '@', note: '@',
registrationDate: '2022-06-08 18:31', registDate: '2022-06-08 18:31',
processDate: '2022-06-08 20:13', processDate: '2022-06-08 20:13',
deposit: 41200000, deposit: 41200000,
withdraw: 19000000, withdraw: 19000000,
total: 22200000, totalMoney: 22200000,
highRank: '[매장]kgon5', highRank: '[매장]kgon5',
state: '완료', state: '완료',
}, },
@ -37,15 +37,15 @@ export const withdraws = [
rank: '회원', rank: '회원',
id: 'qwer12', id: 'qwer12',
nickname: '하하하', nickname: '하하하',
applicationForCurrencyExchange: 10000, exchangeApplicationAmount: 10000,
calculateType: '롤링', calculateType: '롤링',
accountHolder: '하나은행000210654151테스트', accountHolder: '하나은행000210654151테스트',
note: '', note: '',
registrationDate: '2022-06-08 01:22', registDate: '2022-06-08 01:22',
processDate: '2022-06-08 01:22', processDate: '2022-06-08 01:22',
deposit: 10000000, deposit: 10000000,
withdraw: 10000, withdraw: 10000,
total: 9990000, totalMoney: 9990000,
highRank: '[매장]kgon5', highRank: '[매장]kgon5',
state: '완료', state: '완료',
}, },

View File

@ -176,9 +176,9 @@
</div> </div>
<div>{{ withdraw.calculateType }}</div> <div>{{ withdraw.calculateType }}</div>
<div>{{ withdraw.note }}</div> <div>{{ withdraw.note }}</div>
<div>{{ withdraw.applicationForCurrencyExchange }}</div> <div>{{ withdraw.exchangeApplicationAmount }}</div>
<div class="hidden md:block"> <div class="hidden md:block">
{{ withdraw.registrationDate }} {{ withdraw.registDate }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
{{ withdraw.processDate }} {{ withdraw.processDate }}
</div> </div>
@ -187,7 +187,7 @@
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
출금{{ withdraw.withdraw }} 출금{{ withdraw.withdraw }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
계{{ withdraw.total }} 계{{ withdraw.totalMoney }}
</div> </div>
<div class="hidden lg:block"> <div class="hidden lg:block">
<button <button

View File

@ -4,15 +4,15 @@ export interface Withdraw {
rank?: string; rank?: string;
level?: string; level?: string;
nickname?: string; nickname?: string;
applicationForCurrencyExchange?: number; // 환전신청금액 exchangeApplicationAmount?: number; // 환전신청금액
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;
highRank?: string; highRank?: string;
state?: string; state?: string;
} }