feat(wallets): 계좌 관리 종류별 그룹 목록 + 계좌 상세 화면 분리
Deploy / deploy (push) Failing after 15m10s

- 탭 제거, 종류별(은행/현금/카드/대출/마이너스/투자) 섹션 목록으로 변경
- 계좌 클릭 시 인라인 드롭다운 대신 별도 상세 화면(/account/wallets/:id)으로 이동
- 상세 화면: 계좌 요약 + 월별 내역(월 네비/합계), 투자는 투자금(원금)만 표기
- 목록에서 투자 계좌는 평가액 제거하고 투자금만 표기
- 드래그 순서변경은 종류별 그룹 단위로 유지

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
sb
2026-07-07 21:56:19 +09:00
parent e95e14378b
commit 061fb47b97
3 changed files with 409 additions and 265 deletions
+6
View File
@@ -139,6 +139,12 @@ const router = createRouter({
component: () => import('../views/account/AccountWalletView.vue'),
meta: { requiresAuth: true },
},
{
path: '/account/wallets/:id',
name: 'account-wallet-detail',
component: () => import('../views/account/AccountWalletDetailView.vue'),
meta: { requiresAuth: true },
},
{
path: '/account/categories',
name: 'account-categories',