大量的代码格式化
Some checks failed
Docker Build & Deploy / Build Docker Image (push) Failing after 1m10s
Docker Build & Deploy / Deploy to Production (push) Has been skipped
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s
Some checks failed
Docker Build & Deploy / Build Docker Image (push) Failing after 1m10s
Docker Build & Deploy / Deploy to Production (push) Has been skipped
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s
This commit is contained in:
@@ -8,106 +8,106 @@ const router = createRouter({
|
||||
path: '/login',
|
||||
name: 'login',
|
||||
component: () => import('../views/LoginView.vue'),
|
||||
meta: { requiresAuth: false },
|
||||
meta: { requiresAuth: false }
|
||||
},
|
||||
{
|
||||
path: '/balance',
|
||||
name: 'balance',
|
||||
component: () => import('../views/BalanceView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/email',
|
||||
name: 'email',
|
||||
component: () => import('../views/EmailRecord.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/setting',
|
||||
name: 'setting',
|
||||
component: () => import('../views/SettingView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/calendar',
|
||||
name: 'calendar',
|
||||
component: () => import('../views/CalendarView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/smart-classification',
|
||||
name: 'smart-classification',
|
||||
component: () => import('../views/ClassificationSmart.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/classification-edit',
|
||||
name: 'classification-edit',
|
||||
component: () => import('../views/ClassificationEdit.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/classification-batch',
|
||||
name: 'classification-batch',
|
||||
component: () => import('../views/ClassificationBatch.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/classification-nlp',
|
||||
name: 'classification-nlp',
|
||||
component: () => import('../views/ClassificationNLP.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/',
|
||||
name: 'statistics',
|
||||
component: () => import('../views/StatisticsView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/bill-analysis',
|
||||
name: 'bill-analysis',
|
||||
component: () => import('../views/BillAnalysisView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/message',
|
||||
name: 'message',
|
||||
redirect: { path: '/balance', query: { tab: 'message' } },
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/periodic-record',
|
||||
name: 'periodic-record',
|
||||
component: () => import('../views/PeriodicRecord.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/log',
|
||||
name: 'log',
|
||||
component: () => import('../views/LogView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/budget',
|
||||
name: 'budget',
|
||||
component: () => import('../views/BudgetView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/scheduled-tasks',
|
||||
name: 'scheduled-tasks',
|
||||
component: () => import('../views/ScheduledTasksView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
// 待确认的分类项
|
||||
path: '/unconfirmed-classification',
|
||||
name: 'unconfirmed-classification',
|
||||
component: () => import('../views/UnconfirmedClassification.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
meta: { requiresAuth: true }
|
||||
}
|
||||
],
|
||||
]
|
||||
})
|
||||
|
||||
// 路由守卫
|
||||
@@ -127,4 +127,3 @@ router.beforeEach((to, from, next) => {
|
||||
})
|
||||
|
||||
export default router
|
||||
|
||||
|
||||
Reference in New Issue
Block a user