Merge branch 'test' of https://gitea.verdnatura.es/verdnatura/salix-front into dev
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
This commit is contained in:
commit
7135aa6f40
|
@ -121,44 +121,45 @@ const agencyCard = {
|
|||
],
|
||||
};
|
||||
|
||||
const roadmapCard = {
|
||||
path: ':id',
|
||||
name: 'RoadmapCard',
|
||||
component: () => import('src/pages/Route/Roadmap/RoadmapCard.vue'),
|
||||
redirect: { name: 'RoadmapSummary' },
|
||||
meta: {
|
||||
menu: ['RoadmapBasicData', 'RoadmapStops'],
|
||||
},
|
||||
children: [
|
||||
{
|
||||
name: 'RoadmapSummary',
|
||||
path: 'summary',
|
||||
meta: {
|
||||
title: 'summary',
|
||||
icon: 'open_in_new',
|
||||
},
|
||||
component: () => import('pages/Route/Roadmap/RoadmapSummary.vue'),
|
||||
},
|
||||
{
|
||||
name: 'RoadmapBasicData',
|
||||
path: 'basic-data',
|
||||
meta: {
|
||||
title: 'basicData',
|
||||
icon: 'vn:settings',
|
||||
},
|
||||
component: () => import('pages/Route/Roadmap/RoadmapBasicData.vue'),
|
||||
},
|
||||
{
|
||||
name: 'RoadmapStops',
|
||||
path: 'stops',
|
||||
meta: {
|
||||
title: 'stops',
|
||||
icon: 'vn:lines',
|
||||
},
|
||||
component: () => import('pages/Route/Roadmap/RoadmapStops.vue'),
|
||||
},
|
||||
],
|
||||
};
|
||||
// Waiting for the roadmap to be implemented refs #8227
|
||||
// const roadmapCard = {
|
||||
// path: ':id',
|
||||
// name: 'RoadmapCard',
|
||||
// component: () => import('src/pages/Route/Roadmap/RoadmapCard.vue'),
|
||||
// redirect: { name: 'RoadmapSummary' },
|
||||
// meta: {
|
||||
// menu: ['RoadmapBasicData', 'RoadmapStops'],
|
||||
// },
|
||||
// children: [
|
||||
// {
|
||||
// name: 'RoadmapSummary',
|
||||
// path: 'summary',
|
||||
// meta: {
|
||||
// title: 'summary',
|
||||
// icon: 'open_in_new',
|
||||
// },
|
||||
// component: () => import('pages/Route/Roadmap/RoadmapSummary.vue'),
|
||||
// },
|
||||
// {
|
||||
// name: 'RoadmapBasicData',
|
||||
// path: 'basic-data',
|
||||
// meta: {
|
||||
// title: 'basicData',
|
||||
// icon: 'vn:settings',
|
||||
// },
|
||||
// component: () => import('pages/Route/Roadmap/RoadmapBasicData.vue'),
|
||||
// },
|
||||
// {
|
||||
// name: 'RoadmapStops',
|
||||
// path: 'stops',
|
||||
// meta: {
|
||||
// title: 'stops',
|
||||
// icon: 'vn:lines',
|
||||
// },
|
||||
// component: () => import('pages/Route/Roadmap/RoadmapStops.vue'),
|
||||
// },
|
||||
// ],
|
||||
// };
|
||||
|
||||
const vehicleCard = {
|
||||
path: ':id',
|
||||
|
@ -228,7 +229,7 @@ export default {
|
|||
'RouteList',
|
||||
'RouteExtendedList',
|
||||
'RouteAutonomous',
|
||||
'RouteRoadmap',
|
||||
// 'RouteRoadmap', Waiting for the roadmap to be implemented refs #8227
|
||||
'CmrList',
|
||||
'AgencyList',
|
||||
'VehicleList',
|
||||
|
@ -288,28 +289,29 @@ export default {
|
|||
},
|
||||
component: () => import('src/pages/Route/RouteAutonomous.vue'),
|
||||
},
|
||||
{
|
||||
path: 'roadmap',
|
||||
name: 'RouteRoadmap',
|
||||
redirect: { name: 'RoadmapList' },
|
||||
component: () => import('src/pages/Route/RouteRoadmap.vue'),
|
||||
meta: {
|
||||
title: 'RouteRoadmap',
|
||||
icon: 'vn:troncales',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
name: 'RoadmapList',
|
||||
path: 'list',
|
||||
meta: {
|
||||
title: 'list',
|
||||
icon: 'view_list',
|
||||
},
|
||||
component: () => import('src/pages/Route/RouteRoadmap.vue'),
|
||||
},
|
||||
roadmapCard,
|
||||
],
|
||||
},
|
||||
// Waiting for the roadmap to be implemented refs #8227
|
||||
// {
|
||||
// path: 'roadmap',
|
||||
// name: 'RouteRoadmap',
|
||||
// redirect: { name: 'RoadmapList' },
|
||||
// component: () => import('src/pages/Route/RouteRoadmap.vue'),
|
||||
// meta: {
|
||||
// title: 'RouteRoadmap',
|
||||
// icon: 'vn:troncales',
|
||||
// },
|
||||
// children: [
|
||||
// {
|
||||
// name: 'RoadmapList',
|
||||
// path: 'list',
|
||||
// meta: {
|
||||
// title: 'list',
|
||||
// icon: 'view_list',
|
||||
// },
|
||||
// component: () => import('src/pages/Route/RouteRoadmap.vue'),
|
||||
// },
|
||||
// roadmapCard,
|
||||
// ],
|
||||
// },
|
||||
{
|
||||
path: 'cmr',
|
||||
name: 'CmrList',
|
||||
|
|
Loading…
Reference in New Issue