changhaoning 2 лет назад
Родитель
Сommit
647f2b2a17

+ 32 - 0
src/router/routers.js

@@ -470,6 +470,38 @@ let menu = [
               flgRight:false,
               flgRight:false,
             },
             },
           },
           },
+          {
+            path: '/inventory-manage/out-handle/index',
+            name: '出库办理',
+            component: () => import('@/view/inventory-manage/out-handle/index.vue'),
+            meta: {
+              title: '出库办理',
+              notCache: false,
+              flgRight:true,
+            },
+          },
+          {
+            path: '/inventory-manage/out-handle/add',
+            name: '其他出库-新建',
+            component: () => import('@/view/inventory-manage/out-handle/add.vue'),
+            meta: {
+              title: '新建其他出库',
+              hideInMenu: true,
+              notCache: false,
+              flgRight:false,
+            },
+          },
+          {
+            path: '/inventory-manage/entry-handle/edit',
+            name: '其他出库-编辑',
+            component: () => import('@/view/inventory-manage/out-handle/edit.vue'),
+            meta: {
+              title: '编辑其他出库',
+              hideInMenu: true,
+              notCache: false,
+              flgRight:false,
+            },
+          },
         ]
         ]
       },
       },
       {
       {

+ 18 - 0
src/view/inventory-manage/out-handle/add.vue

@@ -0,0 +1,18 @@
+<template>
+  <CommonForm type="add"></CommonForm>
+</template>
+
+<script>
+import CommonForm from "./form";
+
+export default {
+  name: "out-handle-add",
+  components: {
+    CommonForm
+  },
+}
+</script>
+
+<style scoped>
+
+</style>

+ 18 - 0
src/view/inventory-manage/out-handle/edit.vue

@@ -0,0 +1,18 @@
+<template>
+  <CommonForm type="edit"></CommonForm>
+</template>
+
+<script>
+import CommonForm from "./form";
+
+export default {
+  name: "out-handle-edit",
+  components: {
+    CommonForm
+  },
+}
+</script>
+
+<style scoped>
+
+</style>

+ 13 - 0
src/view/inventory-manage/out-handle/form.vue

@@ -0,0 +1,13 @@
+<template>
+
+</template>
+
+<script>
+export default {
+  name: "form"
+}
+</script>
+
+<style scoped>
+
+</style>

+ 13 - 0
src/view/inventory-manage/out-handle/index.vue

@@ -0,0 +1,13 @@
+<template>
+
+</template>
+
+<script>
+export default {
+  name: "index"
+}
+</script>
+
+<style scoped>
+
+</style>