자금이체 이체신청 필터 까지

This commit is contained in:
focp212@naver.com
2025-09-23 11:23:32 +09:00
parent 7d473cdc0a
commit 8777959e0a
7 changed files with 289 additions and 92 deletions

View File

@@ -1,8 +1,17 @@
import { FundAccountStatus } from './types';
import { FundAccountReceiveAccountNameNo, FundAccountStatus } from './types';
export const FundAccountStatusBtnGroup = [
{name: '전체', value: FundAccountStatus.ALL},
{name: '성공', value: FundAccountStatus.SUCCESS},
{name: '실패', value: FundAccountStatus.FAIL},
{name: '중지', value: FundAccountStatus.PENDING},
];
];
export const FundAccountReceiveAccountNameNoOptionsGroup = [
{name: '수취인', value: FundAccountReceiveAccountNameNo.ReceiveAccountName },
{name: '계좌번호', value: FundAccountReceiveAccountNameNo.ReceiveAccountNo },
];
export const FundAccountReceiveBankCodeOptionsGroup = [
{name: 'KB', value: 'KB'}
]

View File

@@ -9,6 +9,11 @@ export interface FundAccountTabProps {
activeTab: FundAccountTabKeys;
}
export enum FundAccountReceiveAccountNameNo {
ReceiveAccountNo = 'ReceiveAccountNo',
ReceiveAccountName = 'ReceiveAccountName'
};
export interface ExtensionFundAccountTransferRequestParams {
mid: string;
@@ -147,5 +152,5 @@ export interface ExtensionFundAccountBalanceParams {
mid: string;
};
export interface ExtensionFundAccountBalanceResponse {
balalnce: number;
balance: number;
};