|
@@ -0,0 +1,89 @@
|
|
|
+import Layout from '@/layout/index';
|
|
|
+
|
|
|
+const houseSelfCollectRouter = {
|
|
|
+ path: '/houseSelfCollect',
|
|
|
+ component: Layout,
|
|
|
+ redirect: '/houseSelfCollect',
|
|
|
+ name: 'houseSelfCollect',
|
|
|
+ alwaysShow: true, // will always show the root menu
|
|
|
+ meta: {
|
|
|
+ title: 'houseSelfCollect',
|
|
|
+ module: 'contractManagement',
|
|
|
+ icon: '-hetongguanli'
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ // 客户管理
|
|
|
+ {
|
|
|
+ path: 'customerManagement',
|
|
|
+ component: () =>
|
|
|
+ import(/* webpackChunkName: "sparepartList" */ '@/views/houseSelfCollect/customerManagement'),
|
|
|
+ name: 'customerManagement',
|
|
|
+ meta: {
|
|
|
+ title: 'customerManagement',
|
|
|
+ shortcutEntrance: 'customerManagement',
|
|
|
+ module: 'procurement.procurementOrder.delete',
|
|
|
+ permissicon: [],
|
|
|
+ keepAlive: true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ //收购管理
|
|
|
+ {
|
|
|
+ path: 'acquisitionManagement',
|
|
|
+ component: () =>
|
|
|
+ import(/* webpackChunkName: "sparepartList" */ '@/views/houseSelfCollect/acquisitionManagement'),
|
|
|
+ name: 'acquisitionManagement',
|
|
|
+ meta: {
|
|
|
+ title: 'acquisitionManagement',
|
|
|
+ shortcutEntrance: 'acquisitionManagement',
|
|
|
+ module: 'procurement.procurementOrder.delete',
|
|
|
+ permissicon: [],
|
|
|
+ keepAlive: true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 质检管理
|
|
|
+ {
|
|
|
+ path: 'inspectionManagement',
|
|
|
+ component: () =>
|
|
|
+ import(/* webpackChunkName: "sparepartList" */ '@/views/houseSelfCollect/inspectionManagement'),
|
|
|
+ name: 'inspectionManagement',
|
|
|
+ meta: {
|
|
|
+ title: 'inspectionManagement',
|
|
|
+ shortcutEntrance: 'inspectionManagement',
|
|
|
+ module: 'procurement.procurementOrder.delete',
|
|
|
+ permissicon: [],
|
|
|
+ keepAlive: true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 检斤管理
|
|
|
+ {
|
|
|
+ path: 'weighingManagement',
|
|
|
+ component: () =>
|
|
|
+ import(/* webpackChunkName: "sparepartList" */ '@/views/houseSelfCollect/weighingManagement'),
|
|
|
+ name: 'weighingManagement',
|
|
|
+ meta: {
|
|
|
+ title: 'weighingManagement',
|
|
|
+ shortcutEntrance: 'weighingManagement',
|
|
|
+ module: 'procurement.procurementOrder.delete',
|
|
|
+ permissicon: [],
|
|
|
+ keepAlive: true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 付款管理
|
|
|
+ {
|
|
|
+ path: 'paymentManagement',
|
|
|
+ component: () =>
|
|
|
+ import(/* webpackChunkName: "sparepartList" */ '@/views/houseSelfCollect/paymentManagement'),
|
|
|
+ name: 'paymentManagement',
|
|
|
+ meta: {
|
|
|
+ title: 'paymentManagement',
|
|
|
+ shortcutEntrance: 'paymentManagement',
|
|
|
+ module: 'procurement.procurementOrder.delete',
|
|
|
+ permissicon: [],
|
|
|
+ keepAlive: true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ ],
|
|
|
+
|
|
|
+};
|
|
|
+
|
|
|
+export default houseSelfCollectRouter;
|