From 951cbdce345c5b9fb91d5284894c7e29e93b4e0d Mon Sep 17 00:00:00 2001 From: sb Date: Mon, 6 Jul 2026 23:22:30 +0900 Subject: [PATCH] =?UTF-8?q?fix(account):=20=EC=9D=B4=EC=B2=B4=20=EC=9E=85?= =?UTF-8?q?=EA=B8=88=20=EC=A2=85=EB=A5=98=20=EC=B9=B4=EB=93=9C=C2=B7?= =?UTF-8?q?=EB=8C=80=EC=B6=9C=20=EC=A0=9C=EC=99=B8=20+=20=EA=B3=84?= =?UTF-8?q?=EC=A2=8C=20=EC=B9=A9=20=EC=9E=90=EB=8F=99=20=EC=A4=84=EB=B0=94?= =?UTF-8?q?=EA=BF=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 이체 입금 계좌 종류에서 카드·대출 제외(계좌→카드/대출은 상환) - 계좌 선택 칩을 고정 2열→자동 줄바꿈(이름 길이/폭에 맞춰 채움, 잘림 없음) Co-Authored-By: Claude Opus 4.8 --- src/views/account/AccountView.vue | 9 +++++---- src/views/account/RecurringView.vue | 2 -- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/views/account/AccountView.vue b/src/views/account/AccountView.vue index c277d6a..b68610a 100644 --- a/src/views/account/AccountView.vue +++ b/src/views/account/AccountView.vue @@ -356,6 +356,10 @@ const fromWalletKinds = computed(() => return true }), ) +// 이체 입금 계좌 종류: 카드·대출은 이체가 아니라 '상환' 대상이므로 제외 +const toWalletKinds = computed(() => + WALLET_KINDS.filter((k) => k.value !== 'CARD' && k.value !== 'LOAN'), +) const TYPES = [ { value: 'EXPENSE', label: '지출', cls: 'chip-expense' }, { value: 'INCOME', label: '수입', cls: 'chip-income' }, @@ -1170,7 +1174,6 @@ onMounted(async () => { v-if="form.walletKind" v-model="form.walletId" :options="fromWalletOptions" - :cols="2" :disabled="submitting" :empty-text="`등록된 ${walletKindLabel}이(가) 없습니다`" /> @@ -1187,7 +1190,7 @@ onMounted(async () => {
입금 종류
-