add more page skeleton

This commit is contained in:
MaysWind
2020-11-06 00:54:56 +08:00
parent 73b94aa42a
commit c83931fda9
10 changed files with 107 additions and 15 deletions
+27
View File
@@ -4,6 +4,13 @@ import HomePage from '../views/mobile/Home.vue';
import LoginPage from '../views/mobile/Login.vue';
import SignUpPage from '../views/mobile/Signup.vue';
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 StatisticsOverviewPage from '../views/mobile/statistics/Overview.vue'
import SettingsPage from '../views/mobile/Settings.vue';
import AboutPage from "../views/mobile/About.vue";
import UserProfilePage from "../views/mobile/users/UserProfile.vue";
@@ -50,6 +57,26 @@ const routes = [
component: SignUpPage,
beforeEnter: checkNotLogin
},
{
path: '/transaction/details',
component: TransactionDetailPage,
beforeEnter: checkLogin
},
{
path: '/transaction/new',
component: TransactionNewPage,
beforeEnter: checkLogin
},
{
path: '/account/list',
component: AccountListPage,
beforeEnter: checkLogin
},
{
path: '/statistic/overview',
component: StatisticsOverviewPage,
beforeEnter: checkLogin
},
{
path: '/settings',
component: SettingsPage,