125 lines
4.4 KiB
JavaScript
125 lines
4.4 KiB
JavaScript
import { RouterView } from 'vue-router';
|
|
|
|
export default {
|
|
path: '/travel',
|
|
name: 'Travel',
|
|
meta: {
|
|
title: 'travel',
|
|
icon: 'local_airport',
|
|
moduleName: 'Travel',
|
|
},
|
|
component: RouterView,
|
|
redirect: { name: 'TravelMain' },
|
|
menus: {
|
|
main: ['TravelList', 'ExtraCommunity'],
|
|
card: ['TravelBasicData', 'TravelHistory', 'TravelThermographs'],
|
|
},
|
|
children: [
|
|
{
|
|
path: '',
|
|
name: 'TravelMain',
|
|
component: () => import('src/pages/Travel/TravelMain.vue'),
|
|
redirect: { name: 'TravelList' },
|
|
children: [
|
|
{
|
|
path: 'list',
|
|
name: 'TravelList',
|
|
meta: {
|
|
title: 'list',
|
|
icon: 'view_list',
|
|
},
|
|
component: () => import('src/pages/Travel/TravelList.vue'),
|
|
},
|
|
{
|
|
path: 'extra-community',
|
|
name: 'ExtraCommunity',
|
|
meta: {
|
|
title: 'extraCommunity',
|
|
icon: 'vn:shipment',
|
|
},
|
|
component: () => import('src/pages/Travel/ExtraCommunity.vue'),
|
|
},
|
|
{
|
|
path: 'create',
|
|
name: 'TravelCreate',
|
|
meta: {
|
|
title: 'travelCreate',
|
|
},
|
|
component: () => import('src/pages/Travel/TravelCreate.vue'),
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: 'TravelCard',
|
|
path: ':id',
|
|
component: () => import('src/pages/Travel/Card/TravelCard.vue'),
|
|
redirect: { name: 'TravelSummary' },
|
|
children: [
|
|
{
|
|
name: 'TravelSummary',
|
|
path: 'summary',
|
|
meta: {
|
|
title: 'summary',
|
|
},
|
|
component: () => import('src/pages/Travel/Card/TravelSummary.vue'),
|
|
},
|
|
{
|
|
name: 'TravelBasicData',
|
|
path: 'basic-data',
|
|
meta: {
|
|
title: 'basicData',
|
|
icon: 'vn:settings',
|
|
},
|
|
component: () => import('src/pages/Travel/Card/TravelBasicData.vue'),
|
|
},
|
|
{
|
|
name: 'TravelHistory',
|
|
path: 'history',
|
|
meta: {
|
|
title: 'history',
|
|
icon: 'history',
|
|
},
|
|
component: () => import('src/pages/Travel/Card/TravelLog.vue'),
|
|
},
|
|
{
|
|
name: 'TravelThermographs',
|
|
path: 'thermographs/:thermographId?',
|
|
meta: {
|
|
title: 'thermographs',
|
|
icon: 'vn:thermometer',
|
|
},
|
|
redirect: {
|
|
name: 'TravelThermographsIndex',
|
|
},
|
|
children: [
|
|
{
|
|
name: 'TravelThermographsIndex',
|
|
path: 'index',
|
|
component: () =>
|
|
import('src/pages/Travel/Card/TravelThermographs.vue'),
|
|
},
|
|
{
|
|
name: 'TravelThermographsCreate',
|
|
path: 'create',
|
|
props: { viewAction: 'create' },
|
|
component: () =>
|
|
import(
|
|
'src/pages/Travel/Card/TravelThermographsForm.vue'
|
|
),
|
|
},
|
|
{
|
|
name: 'TravelThermographsEdit',
|
|
path: 'edit',
|
|
props: { viewAction: 'edit' },
|
|
component: () =>
|
|
import(
|
|
'src/pages/Travel/Card/TravelThermographsForm.vue'
|
|
),
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|