feat(UI): actualización de colores de ruta a amarillo y fix navegación transporte

This commit is contained in:
2026-02-27 10:57:42 -05:00
parent a8eaad7f35
commit b90eb83acb
12 changed files with 1624 additions and 332 deletions

View File

@ -40,14 +40,33 @@ const router = createRouter({
component: () => import('@/views/BusStopDetailsView.vue'),
},
{
path: '/taxi',
name: 'taxi',
component: () => import('@/views/TaxiView.vue'),
},
{
path: '/shuttle/:id',
name: 'shuttle-details',
component: () => import('@/views/ShuttleDetalleView.vue'),
path: '/transporte',
component: () => import('@/views/TransporteLayout.vue'),
children: [
{
path: '',
redirect: '/transporte/viajes-turisticos'
},
{
path: 'viajes-turisticos',
name: 'ViajesTuristicos',
component: () => import('@/views/transporte/ViajesTuristicos.vue')
},
{
path: 'viajes-turisticos/:id',
name: 'ShuttleDetalle',
component: () => import('@/views/transporte/ShuttleDetalle.vue'),
meta: {
padre: 'ViajesTuristicos',
titulo: 'Detalle del viaje'
}
},
{
path: 'taxis',
name: 'TaxisLocales',
component: () => import('@/views/transporte/TaxisLocales.vue')
}
]
},
// ─── Vistas de Descubrir ─────────────────────────────────────────────