This commit is contained in:
yml
2026-04-08 16:30:42 +08:00
commit 313c036845
131 changed files with 22393 additions and 0 deletions
+108
View File
@@ -0,0 +1,108 @@
import { createRouter, createWebHashHistory } from 'vue-router'
import { hasAdminSession } from '@/utils/admin-auth'
const router = createRouter({
history: createWebHashHistory(),
routes: [
{
path: '/',
redirect: '/tx/browser',
},
{
path: '/tx',
redirect: '/tx/browser',
},
{
path: '/tx/browser',
component: () => import('@/views/tx/TencentBrowserView.vue'),
},
{
path: '/claim/:token',
component: () => import('@/views/claim/ClaimView.vue'),
},
{
path: '/admin',
redirect: '/admin/dashboard',
},
{
path: '/admin/login',
component: () => import('@/views/admin/AdminLoginView.vue'),
},
{
path: '/admin',
component: () => import('@/views/admin/AdminLayout.vue'),
children: [
{
path: '',
redirect: '/admin/dashboard',
},
{
path: 'dashboard',
component: () => import('@/views/admin/AdminDashboardView.vue'),
},
{
path: 'users',
component: () => import('@/views/admin/AdminUsersView.vue'),
},
{
path: 'orders',
component: () => import('@/views/admin/AdminOrdersView.vue'),
},
{
path: 'orders/:orderId',
component: () => import('@/views/admin/AdminOrderDetailView.vue'),
},
{
path: 'tasks',
component: () => import('@/views/admin/AdminTasksView.vue'),
},
{
path: 'tasks/:taskId',
component: () => import('@/views/admin/AdminTaskDetailView.vue'),
},
{
path: 'cdks',
component: () => import('@/views/admin/AdminCdksView.vue'),
},
{
path: 'webhook-events',
component: () => import('@/views/admin/AdminWebhookEventsView.vue'),
},
{
path: 'webhook-events/:eventId',
component: () => import('@/views/admin/AdminWebhookEventDetailView.vue'),
},
{
path: 'audit-logs',
component: () => import('@/views/admin/AdminAuditLogsView.vue'),
},
],
},
{
path: '/:pathMatch(.*)*',
component: () => import('@/views/NotFoundView.vue'),
},
],
})
router.beforeEach((to) => {
if (!to.path.startsWith('/admin')) {
return true
}
if (to.path === '/admin/login') {
if (hasAdminSession()) {
return '/admin/dashboard'
}
return true
}
if (!hasAdminSession()) {
return '/admin/login'
}
return true
})
export default router