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 = {
|
const parkingCard = {
|
||||||
name: 'ParkingCard',
|
name: 'ParkingCard',
|
||||||
path: ':id',
|
path: ':id',
|
||||||
component: () => import('src/pages/Parking/Card/ParkingCard.vue'),
|
component: () => import('src/pages/Shelving/Parking/Card/ParkingCard.vue'),
|
||||||
redirect: { name: 'ParkingSummary' },
|
redirect: { name: 'ParkingSummary' },
|
||||||
meta: {
|
meta: {
|
||||||
menu: ['ParkingBasicData', 'ParkingLog'],
|
menu: ['ParkingBasicData', 'ParkingLog'],
|
||||||
|
@ -16,7 +16,7 @@ const parkingCard = {
|
||||||
title: 'summary',
|
title: 'summary',
|
||||||
icon: 'launch',
|
icon: 'launch',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Parking/Card/ParkingSummary.vue'),
|
component: () => import('src/pages/Shelving/Parking/Card/ParkingSummary.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'basic-data',
|
path: 'basic-data',
|
||||||
|
@ -25,7 +25,8 @@ const parkingCard = {
|
||||||
title: 'basicData',
|
title: 'basicData',
|
||||||
icon: 'vn:settings',
|
icon: 'vn:settings',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Parking/Card/ParkingBasicData.vue'),
|
component: () =>
|
||||||
|
import('src/pages/Shelving/Parking/Card/ParkingBasicData.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'log',
|
path: 'log',
|
||||||
|
@ -34,7 +35,7 @@ const parkingCard = {
|
||||||
title: 'log',
|
title: 'log',
|
||||||
icon: 'history',
|
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',
|
title: 'parkingList',
|
||||||
icon: 'view_list',
|
icon: 'view_list',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Parking/ParkingList.vue'),
|
component: () => import('src/pages/Shelving/Parking/ParkingList.vue'),
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: 'list',
|
path: 'list',
|
||||||
|
|
Loading…
Reference in New Issue