|
@@ -0,0 +1,34 @@
|
|
|
+import Layout from '@/layout/index';
|
|
|
+
|
|
|
+const contractManagementRouter = {
|
|
|
+ path: '/warehouseManagement',
|
|
|
+ component: Layout,
|
|
|
+ redirect: '/warehouseManagement',
|
|
|
+ name: 'warehouseManagement',
|
|
|
+ alwaysShow: true, // will always show the root menu
|
|
|
+ meta: {
|
|
|
+ title: 'warehouseManagement',
|
|
|
+ module: 'warehouseManagement',
|
|
|
+ icon: 'cg'
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: 'warehouseManagementlist',
|
|
|
+ component: () =>
|
|
|
+ import(/* webpackChunkName: "applDetail" */ '@/views/warehouse/list'),
|
|
|
+ name: 'warehouseManagementlist',
|
|
|
+ meta: {
|
|
|
+ title: 'warehouseManagementlist',
|
|
|
+ shortcutEntrance: 'warehouseManagementlist',
|
|
|
+ module: 'warehouseManagement.salesContract.warehouseManagementlist',
|
|
|
+ permissicon: [],
|
|
|
+ keepAlive: true
|
|
|
+ // module: 'procurement.sparepart.applDetail'
|
|
|
+ },
|
|
|
+ hidden: true
|
|
|
+ },
|
|
|
+ ],
|
|
|
+
|
|
|
+};
|
|
|
+
|
|
|
+export default contractManagementRouter;
|