add account list page and account add page

This commit is contained in:
MaysWind
2020-11-09 01:10:41 +08:00
parent 70d4a84349
commit b2b8dcb098
15 changed files with 753 additions and 6 deletions
+6
View File
@@ -8,6 +8,7 @@ import TransactionDetailPage from '../views/mobile/transactions/Detail.vue'
import TransactionNewPage from '../views/mobile/transactions/New.vue'
import AccountListPage from '../views/mobile/accounts/AccountList.vue'
import AccountAddPage from '../views/mobile/accounts/AccountAdd.vue'
import StatisticsOverviewPage from '../views/mobile/statistics/Overview.vue'
@@ -72,6 +73,11 @@ const routes = [
component: AccountListPage,
beforeEnter: checkLogin
},
{
path: '/account/add',
component: AccountAddPage,
beforeEnter: checkLogin
},
{
path: '/statistic/overview',
component: StatisticsOverviewPage,