웹입출금정산 변수명수정

This commit is contained in:
이담 정 2022-08-10 09:31:28 +00:00
parent 81769287dc
commit 6cea6ab5cf
3 changed files with 11 additions and 11 deletions

View File

@ -9,18 +9,18 @@ export const webCalculates = [
webDepositRank: '회원',
nameOfDepositer: '가가가',
webDepositAmountOfPayment: 100000,
webDepositRegistrationDate: '2022-06-13 12:57',
webDepositRegistDate: '2022-06-13 12:57',
webDepositConfirmDate: '2022-06-13 12:58',
webWithdrawIdx: 1,
webWithdrawId: 'aa100',
webWithdrawNickname: 'aa100',
webWithdrawRank: '회원',
nameOfBank: '광주은행',
bankName: '광주은행',
accountHolder: '예금주',
accountNumber: '2222229999-222',
webWithdrawAmountOfPayment: 5000000,
webWithdrawRegistrationDate: '2022-06-08 18:31',
webWithdrawRegistDate: '2022-06-08 18:31',
webWithdrawConfirmDate: '2022-06-12 20:13',
},
{
@ -31,7 +31,7 @@ export const webCalculates = [
webDepositRank: '회원',
nameOfDepositer: '가가가',
webDepositAmountOfPayment: 100000,
webDepositRegistrationDate: '2022-06-13 12:56',
webDepositRegistDate: '2022-06-13 12:56',
webDepositConfirmDate: '2022-06-13 12:57',
webWithdrawIdx: 2,
@ -40,7 +40,7 @@ export const webCalculates = [
webWithdrawRank: '회원',
accountHolder: '광주은행 예금주22 565656565656',
webWithdrawAmountOfPayment: 14000000,
webWithdrawRegistrationDate: '2022-06-10 18:31',
webWithdrawRegistDate: '2022-06-10 18:31',
webWithdrawConfirmDate: '2022-06-10 20:13',
},
];

View File

@ -117,7 +117,7 @@
{{ webCalculate.webDepositAmountOfPayment }}원
</div>
<div class="hidden md:block">
{{ webCalculate.webDepositRegistrationDate }}
{{ webCalculate.webDepositRegistDate }}
<hr style="margin: 7px 0px" />
{{ webCalculate.webDepositConfirmDate }}
</div>
@ -185,7 +185,7 @@
</div>
<div>{{ webCalculate.webWithdrawRank }}</div>
<div class="hidden sm:block">
{{ webCalculate.nameOfBank }}
{{ webCalculate.bankName }}
<hr style="margin: 7px 0px" />
{{ webCalculate.accountHolder }}
<hr style="margin: 7px 0px" />
@ -195,7 +195,7 @@
{{ webCalculate.webWithdrawAmountOfPayment }}원
</div>
<div class="hidden md:block">
{{ webCalculate.webWithdrawRegistrationDate }}
{{ webCalculate.webWithdrawRegistDate }}
<hr style="margin: 7px 0px" />
{{ webCalculate.webWithdrawConfirmDate }}
</div>

View File

@ -6,7 +6,7 @@ export interface WebCalculate {
webDepositRank?: string; // 웹입금 등급
nameOfDepositer?: string; // 입금자명
webDepositAmountOfPayment?: number; // 웹입금 결제금액
webDepositRegistrationDate?: Date; // 웹입금 신청일
webDepositRegistDate?: Date; // 웹입금 신청일
webDepositConfirmDate?: Date; // 웹입금 확인일
webWithdrawIdx?: number; // 웹출금 idx
@ -14,9 +14,9 @@ export interface WebCalculate {
webWithdrawNickname?: string; // 웹출금 닉네임
webWithdrawRank?: string; // 웹출금 등급
accountHolder?: string;
nameOfBank?: string;
bankName?: string;
accountNumber?: string;
webWithdrawAmountOfPayment?: number; // 웹출금 결제금액
webWithdrawRegistrationDate?: Date; // 웹출금 신청일
webWithdrawRegistDate?: Date; // 웹출금 신청일
webWithdrawConfirmDate?: Date; // 웹출금 확인일
}