From a4a4aec31463a611c0f647b33e6688711e7758cb Mon Sep 17 00:00:00 2001 From: ByungCheol Date: Sun, 14 Jun 2026 15:43:45 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EA=B0=80=EA=B3=84=EB=B6=80=C2=B7?= =?UTF-8?q?=EA=B3=84=EC=A2=8C=EA=B4=80=EB=A6=AC=EC=97=90=20=ED=98=84?= =?UTF-8?q?=EA=B8=88=20=EA=B3=84=EC=A2=8C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 계좌 관리: '현금' 탭 + 폼(이름·초기 잔액, 발급사/계좌번호 등 미노출) - 가계부 입력: 현금 선택 시 등록된 현금 계좌를 고를 수 있음(없으면 종전처럼 미지정) - 고정 지출: 현금 종류 추가 Co-Authored-By: Claude Opus 4.8 --- src/views/account/AccountView.vue | 4 ++-- src/views/account/AccountWalletView.vue | 5 +++-- src/views/account/RecurringView.vue | 1 + 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/views/account/AccountView.vue b/src/views/account/AccountView.vue index 3714551..33ed119 100644 --- a/src/views/account/AccountView.vue +++ b/src/views/account/AccountView.vue @@ -687,8 +687,8 @@ onMounted(async () => { - + diff --git a/src/views/account/AccountWalletView.vue b/src/views/account/AccountWalletView.vue index d02b471..7fcaf08 100644 --- a/src/views/account/AccountWalletView.vue +++ b/src/views/account/AccountWalletView.vue @@ -9,6 +9,7 @@ const router = useRouter() const TABS = [ { key: 'BANK', label: '은행계좌' }, + { key: 'CASH', label: '현금' }, { key: 'CARD', label: '신용/체크카드' }, { key: 'LOAN', label: '대출' }, { key: 'INVEST', label: '투자' }, @@ -195,7 +196,7 @@ function issuerLabel(t) { return t === 'BANK' ? '은행명' : t === 'CARD' ? '카드사' : t === 'INVEST' ? '증권사' : '대출기관' } function openingLabel(t) { - return t === 'BANK' ? '초기 잔액' : t === 'CARD' ? '초기 미결제 금액' : t === 'INVEST' ? '투자금(투입원금)' : '대출 잔액(원금)' + return t === 'BANK' || t === 'CASH' ? '초기 잔액' : t === 'CARD' ? '초기 미결제 금액' : t === 'INVEST' ? '투자금(투입원금)' : '대출 잔액(원금)' } // 투자 수익률(%) — 투입원금 대비 평가손익 function returnPct(w) { @@ -436,7 +437,7 @@ onBeforeUnmount(() => sortable?.destroy())
- +