웹입출금정산 변수명수정
This commit is contained in:
parent
81769287dc
commit
6cea6ab5cf
|
@ -9,18 +9,18 @@ export const webCalculates = [
|
||||||
webDepositRank: '회원',
|
webDepositRank: '회원',
|
||||||
nameOfDepositer: '가가가',
|
nameOfDepositer: '가가가',
|
||||||
webDepositAmountOfPayment: 100000,
|
webDepositAmountOfPayment: 100000,
|
||||||
webDepositRegistrationDate: '2022-06-13 12:57',
|
webDepositRegistDate: '2022-06-13 12:57',
|
||||||
webDepositConfirmDate: '2022-06-13 12:58',
|
webDepositConfirmDate: '2022-06-13 12:58',
|
||||||
|
|
||||||
webWithdrawIdx: 1,
|
webWithdrawIdx: 1,
|
||||||
webWithdrawId: 'aa100',
|
webWithdrawId: 'aa100',
|
||||||
webWithdrawNickname: 'aa100',
|
webWithdrawNickname: 'aa100',
|
||||||
webWithdrawRank: '회원',
|
webWithdrawRank: '회원',
|
||||||
nameOfBank: '광주은행',
|
bankName: '광주은행',
|
||||||
accountHolder: '예금주',
|
accountHolder: '예금주',
|
||||||
accountNumber: '2222229999-222',
|
accountNumber: '2222229999-222',
|
||||||
webWithdrawAmountOfPayment: 5000000,
|
webWithdrawAmountOfPayment: 5000000,
|
||||||
webWithdrawRegistrationDate: '2022-06-08 18:31',
|
webWithdrawRegistDate: '2022-06-08 18:31',
|
||||||
webWithdrawConfirmDate: '2022-06-12 20:13',
|
webWithdrawConfirmDate: '2022-06-12 20:13',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -31,7 +31,7 @@ export const webCalculates = [
|
||||||
webDepositRank: '회원',
|
webDepositRank: '회원',
|
||||||
nameOfDepositer: '가가가',
|
nameOfDepositer: '가가가',
|
||||||
webDepositAmountOfPayment: 100000,
|
webDepositAmountOfPayment: 100000,
|
||||||
webDepositRegistrationDate: '2022-06-13 12:56',
|
webDepositRegistDate: '2022-06-13 12:56',
|
||||||
webDepositConfirmDate: '2022-06-13 12:57',
|
webDepositConfirmDate: '2022-06-13 12:57',
|
||||||
|
|
||||||
webWithdrawIdx: 2,
|
webWithdrawIdx: 2,
|
||||||
|
@ -40,7 +40,7 @@ export const webCalculates = [
|
||||||
webWithdrawRank: '회원',
|
webWithdrawRank: '회원',
|
||||||
accountHolder: '광주은행 예금주22 565656565656',
|
accountHolder: '광주은행 예금주22 565656565656',
|
||||||
webWithdrawAmountOfPayment: 14000000,
|
webWithdrawAmountOfPayment: 14000000,
|
||||||
webWithdrawRegistrationDate: '2022-06-10 18:31',
|
webWithdrawRegistDate: '2022-06-10 18:31',
|
||||||
webWithdrawConfirmDate: '2022-06-10 20:13',
|
webWithdrawConfirmDate: '2022-06-10 20:13',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -117,7 +117,7 @@
|
||||||
{{ webCalculate.webDepositAmountOfPayment }}원
|
{{ webCalculate.webDepositAmountOfPayment }}원
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
{{ webCalculate.webDepositRegistrationDate }}
|
{{ webCalculate.webDepositRegistDate }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ webCalculate.webDepositConfirmDate }}
|
{{ webCalculate.webDepositConfirmDate }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -185,7 +185,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div>{{ webCalculate.webWithdrawRank }}</div>
|
<div>{{ webCalculate.webWithdrawRank }}</div>
|
||||||
<div class="hidden sm:block">
|
<div class="hidden sm:block">
|
||||||
{{ webCalculate.nameOfBank }}
|
{{ webCalculate.bankName }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ webCalculate.accountHolder }}
|
{{ webCalculate.accountHolder }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
|
@ -195,7 +195,7 @@
|
||||||
{{ webCalculate.webWithdrawAmountOfPayment }}원
|
{{ webCalculate.webWithdrawAmountOfPayment }}원
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:block">
|
||||||
{{ webCalculate.webWithdrawRegistrationDate }}
|
{{ webCalculate.webWithdrawRegistDate }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ webCalculate.webWithdrawConfirmDate }}
|
{{ webCalculate.webWithdrawConfirmDate }}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -6,7 +6,7 @@ export interface WebCalculate {
|
||||||
webDepositRank?: string; // 웹입금 등급
|
webDepositRank?: string; // 웹입금 등급
|
||||||
nameOfDepositer?: string; // 입금자명
|
nameOfDepositer?: string; // 입금자명
|
||||||
webDepositAmountOfPayment?: number; // 웹입금 결제금액
|
webDepositAmountOfPayment?: number; // 웹입금 결제금액
|
||||||
webDepositRegistrationDate?: Date; // 웹입금 신청일
|
webDepositRegistDate?: Date; // 웹입금 신청일
|
||||||
webDepositConfirmDate?: Date; // 웹입금 확인일
|
webDepositConfirmDate?: Date; // 웹입금 확인일
|
||||||
|
|
||||||
webWithdrawIdx?: number; // 웹출금 idx
|
webWithdrawIdx?: number; // 웹출금 idx
|
||||||
|
@ -14,9 +14,9 @@ export interface WebCalculate {
|
||||||
webWithdrawNickname?: string; // 웹출금 닉네임
|
webWithdrawNickname?: string; // 웹출금 닉네임
|
||||||
webWithdrawRank?: string; // 웹출금 등급
|
webWithdrawRank?: string; // 웹출금 등급
|
||||||
accountHolder?: string;
|
accountHolder?: string;
|
||||||
nameOfBank?: string;
|
bankName?: string;
|
||||||
accountNumber?: string;
|
accountNumber?: string;
|
||||||
webWithdrawAmountOfPayment?: number; // 웹출금 결제금액
|
webWithdrawAmountOfPayment?: number; // 웹출금 결제금액
|
||||||
webWithdrawRegistrationDate?: Date; // 웹출금 신청일
|
webWithdrawRegistDate?: Date; // 웹출금 신청일
|
||||||
webWithdrawConfirmDate?: Date; // 웹출금 확인일
|
webWithdrawConfirmDate?: Date; // 웹출금 확인일
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user