feat(mobile-navigation-improvements): Complete US-208 - Actualizare Router cu noile rute

Implemented by Ralph autonomous loop.
Iteration: 3

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Claude Agent
2026-01-12 12:09:57 +00:00
parent 1e459cc7fe
commit 9d97d72d4d
6 changed files with 413 additions and 2 deletions

View File

@@ -53,6 +53,18 @@ const routes = [
name: 'ServerLogs',
component: () => import('@reports/views/ServerLogsView.vue'),
meta: { requiresAuth: true, title: 'Server Logs - ROA2WEB' }
},
{
path: 'maturity-analysis',
name: 'MaturityAnalysis',
component: () => import('@reports/views/MaturityAnalysisView.vue'),
meta: { requiresAuth: true, title: 'Analiză Scadențe - ROA2WEB' }
},
{
path: 'detailed-invoices',
name: 'DetailedInvoices',
component: () => import('@reports/views/DetailedInvoicesView.vue'),
meta: { requiresAuth: true, title: 'Facturi Detaliate - ROA2WEB' }
}
]
},
@@ -104,6 +116,20 @@ const routes = [
}
]
},
{
path: '/settings',
name: 'SettingsHub',
component: () => import('@/modules/reports/ReportsLayout.vue'),
meta: { requiresAuth: true },
children: [
{
path: '',
name: 'Settings',
component: () => import('@reports/views/SettingsHubView.vue'),
meta: { requiresAuth: true, title: 'Setări - ROA2WEB' }
}
]
},
{
path: '/',
redirect: '/reports/dashboard'