mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-16 16:07:33 +08:00
support clicking transaction to show transaction detail
This commit is contained in:
@@ -5,7 +5,7 @@ import LoginPage from '../views/mobile/Login.vue';
|
||||
import SignUpPage from '../views/mobile/Signup.vue';
|
||||
import UnlockPage from '../views/mobile/Unlock.vue';
|
||||
|
||||
import TransactionDetailPage from '../views/mobile/transactions/Detail.vue';
|
||||
import TransactionListPage from '../views/mobile/transactions/List.vue';
|
||||
import TransactionEditPage from '../views/mobile/transactions/Edit.vue';
|
||||
|
||||
import AccountListPage from '../views/mobile/accounts/List.vue';
|
||||
@@ -135,8 +135,8 @@ const routes = [
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/transaction/details',
|
||||
component: TransactionDetailPage,
|
||||
path: '/transaction/list',
|
||||
component: TransactionListPage,
|
||||
beforeEnter: checkLogin
|
||||
},
|
||||
{
|
||||
@@ -149,6 +149,11 @@ const routes = [
|
||||
component: TransactionEditPage,
|
||||
beforeEnter: checkLogin
|
||||
},
|
||||
{
|
||||
path: '/transaction/detail',
|
||||
component: TransactionEditPage,
|
||||
beforeEnter: checkLogin
|
||||
},
|
||||
{
|
||||
path: '/account/list',
|
||||
component: AccountListPage,
|
||||
|
||||
Reference in New Issue
Block a user