add transaction list page for desktop

This commit is contained in:
MaysWind
2023-07-24 02:36:59 +08:00
parent aafdbab781
commit 70fc781a03
13 changed files with 1227 additions and 19 deletions
+9 -1
View File
@@ -82,7 +82,15 @@ const router = createRouter({
{
path: '/transactions',
component: TransactionsPage,
beforeEnter: checkLogin
beforeEnter: checkLogin,
props: route => ({
initDateType: route.query.dateType,
initMaxTime: route.query.maxTime,
initMinTime: route.query.minTime,
initType: route.query.type,
initCategoryId: route.query.categoryId,
initAccountId: route.query.accountId
})
},
{
path: '/statistics/transaction',