浏览代码

出库管理

huangfuli 3 年之前
父节点
当前提交
066c3ca434

+ 16 - 3
src/lang/zh.js

@@ -999,7 +999,14 @@
     customerManagementAdd:'客户管理添加',
     settlement:'结算',
     inspectInfo:'质检信息',
-    weightCheck:'检斤'
+    weightCheck:'检斤',
+
+    //出库管理
+    outboundManagement: '出库管理',
+    weighingManagement: '检斤管理',
+    qualityInspectionManagement: '质检管理',
+    collectionManagement: '收款管理',
+
   },
   // 后台错误码
   message: {
@@ -4826,6 +4833,7 @@
   financialManagement:{
     collectionManagementList:'收款管理',
   },
+  
   //运输管理
   tranManagement: {
     tranManagementDriver: '司机管理',
@@ -7427,7 +7435,12 @@
     settlement:'结算',
     inspectInfo:'质检信息',
     weightCheck:'检斤'
-
+  },
+  //出库管理
+  outboundManagement: {
+    weighingManagement: '检斤管理',
+    qualityInspectionManagement: '质检管理',
+    collectionManagement: '收款管理',
   }
-
+     
 }

+ 0 - 0
src/views/outboundManagement/collectionManagement.vue


+ 61 - 0
src/views/outboundManagement/component/route.js

@@ -0,0 +1,61 @@
+import Layout from '@/layout/index';
+
+const outboundManagementRouter = {
+    path: '/outboundManagement',
+    component: Layout,
+    redirect: '/outboundManagement',
+    name: 'outboundManagement',
+    alwaysShow: true, // will always show the root menu
+    meta: {
+        title: 'outboundManagement',
+        module: 'contractManagement',
+        icon: '-hetongguanli'
+    },
+    children: [
+        // 检斤管理
+        {
+            path: 'weighingManagement',
+            component: () =>
+                import(/* webpackChunkName: "sparepartList" */ '@/views/outboundManagement/weighingManagement'),
+            name: 'weighingManagement',
+            meta: {
+                title: 'weighingManagement',
+                shortcutEntrance: 'outboundManagement',
+                module: 'procurement.procurementOrder.delete',
+                permissicon: [],
+                keepAlive: true
+            }
+        },
+        // 质检管理
+        {
+            path: 'qualityInspectionManagement',
+            component: () =>
+                import(/* webpackChunkName: "sparepartList" */ '@/views/outboundManagement/qualityInspectionManagement'),
+            name: 'qualityInspectionManagement',
+            meta: {
+                title: 'qualityInspectionManagement',
+                shortcutEntrance: 'outboundManagement',
+                module: 'procurement.procurementOrder.delete',
+                permissicon: [],
+                keepAlive: true
+            }
+        },
+        // 付款管理
+        {
+            path: 'collectionManagement',
+            component: () =>
+                import(/* webpackChunkName: "sparepartList" */ '@/views/outboundManagement/collectionManagement'),
+            name: 'collectionManagement',
+            meta: {
+                title: 'collectionManagement',
+                shortcutEntrance: 'outboundManagement',
+                module: 'procurement.procurementOrder.delete',
+                permissicon: [],
+                keepAlive: true
+            }
+        },
+    ],
+
+};
+
+export default outboundManagementRouter;

+ 0 - 0
src/views/outboundManagement/qualityInspectionManagement.vue


+ 0 - 0
src/views/outboundManagement/weighingManagement.vue