From 42c80b09e332e0b44907700e8ed334219057249c Mon Sep 17 00:00:00 2001 From: Jafeng <2998840497@qq.com> Date: Wed, 12 Nov 2025 18:20:19 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0=E8=B4=A6=E5=8D=95?= =?UTF-8?q?=E8=AF=A6=E6=83=85=EF=BC=8C=E4=BC=98=E5=8C=96=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/frontend/src/App.vue | 2 +- .../components/navigation/BottomTabBar.vue | 2 +- .../transactions/TransactionItem.vue | 10 +-- .../src/composables/useTransaction.ts | 43 +++++++++++ .../pages/TransactionDetailPage.vue | 73 +++++++++++++++++++ .../transactions/pages/TransactionsPage.vue | 12 ++- apps/frontend/src/router/index.ts | 6 ++ 7 files changed, 138 insertions(+), 10 deletions(-) create mode 100644 apps/frontend/src/composables/useTransaction.ts create mode 100644 apps/frontend/src/features/transactions/pages/TransactionDetailPage.vue diff --git a/apps/frontend/src/App.vue b/apps/frontend/src/App.vue index 9412d92..b4847f2 100644 --- a/apps/frontend/src/App.vue +++ b/apps/frontend/src/App.vue @@ -11,7 +11,7 @@ const showAppShell = computed(() => !route.path.startsWith('/auth'));