fix: refs #7550 organize parking, shelving
This commit is contained in:
parent
063ac0cb7b
commit
acb1ce39e0
|
@ -3,7 +3,7 @@ import { RouterView } from 'vue-router';
|
|||
const parkingCard = {
|
||||
name: 'ParkingCard',
|
||||
path: ':id',
|
||||
component: () => import('src/pages/Parking/Card/ParkingCard.vue'),
|
||||
component: () => import('src/pages/Shelving/Parking/Card/ParkingCard.vue'),
|
||||
redirect: { name: 'ParkingSummary' },
|
||||
meta: {
|
||||
menu: ['ParkingBasicData', 'ParkingLog'],
|
||||
|
@ -16,7 +16,7 @@ const parkingCard = {
|
|||
title: 'summary',
|
||||
icon: 'launch',
|
||||
},
|
||||
component: () => import('src/pages/Parking/Card/ParkingSummary.vue'),
|
||||
component: () => import('src/pages/Shelving/Parking/Card/ParkingSummary.vue'),
|
||||
},
|
||||
{
|
||||
path: 'basic-data',
|
||||
|
@ -25,7 +25,8 @@ const parkingCard = {
|
|||
title: 'basicData',
|
||||
icon: 'vn:settings',
|
||||
},
|
||||
component: () => import('src/pages/Parking/Card/ParkingBasicData.vue'),
|
||||
component: () =>
|
||||
import('src/pages/Shelving/Parking/Card/ParkingBasicData.vue'),
|
||||
},
|
||||
{
|
||||
path: 'log',
|
||||
|
@ -34,7 +35,7 @@ const parkingCard = {
|
|||
title: 'log',
|
||||
icon: 'history',
|
||||
},
|
||||
component: () => import('src/pages/Parking/Card/ParkingLog.vue'),
|
||||
component: () => import('src/pages/Shelving/Parking/Card/ParkingLog.vue'),
|
||||
},
|
||||
],
|
||||
};
|
||||
|
@ -127,7 +128,7 @@ export default {
|
|||
title: 'parkingList',
|
||||
icon: 'view_list',
|
||||
},
|
||||
component: () => import('src/pages/Parking/ParkingList.vue'),
|
||||
component: () => import('src/pages/Shelving/Parking/ParkingList.vue'),
|
||||
children: [
|
||||
{
|
||||
path: 'list',
|
||||
|
|
Loading…
Reference in New Issue