Bläddra i källkod

新增库内自采

mxx 3 år sedan
förälder
incheckning
261826a9e9

+ 19 - 1
src/lang/zh.js

@@ -979,7 +979,15 @@
     dynamicReports: '动态报',
     dynamicReportsAdd: '新增动态报',
     dynamicReportsEdit: '编辑动态报',
-    dynamicReportsDetail: '动态报详情'
+    dynamicReportsDetail: '动态报详情',
+
+    // 库内自采
+    customerManagement:'客户管理',
+    acquisitionManagement:'收购管理',
+    inspectionManagement:'质检管理',
+    paymentManagement:'付款管理',
+    weighingManagement:'检斤管理',
+    houseSelfCollect:"库内自采"
   },
   // 后台错误码
   message: {
@@ -7391,4 +7399,14 @@
     content: '很高兴您能使用赢海云管船产品,在使用的过程中,遇到任何问题都可以联系赢海产品顾问。',
     phone: '0411-66854772'
   },
+  //库内自采
+  houseSelfCollect:{
+    customerManagement:'客户管理',
+    acquisitionManagement:'收购管理',
+    inspectionManagement:'质检管理',
+    paymentManagement:'付款管理',
+    weighingManagement:'检斤管理',
+    houseSelfCollect:"库内自采"
+  }
+  
 }

+ 34 - 0
src/views/houseSelfCollect/acquisitionManagement.vue

@@ -0,0 +1,34 @@
+<!--收购管理-->
+<template>
+  <div>
+   收购管理
+  </div>
+</template>
+<script>
+import {
+  // getList,
+} from '@/model/houseSelfCollect/index'
+
+export default {
+
+  components: {
+
+  },
+  watch: {
+
+  },
+  data() {
+    return {
+ 
+    }
+  },
+  activated() {
+
+  },
+  methods: {
+
+  },
+}
+</script>
+<style lang="scss" scoped>
+</style>

+ 89 - 0
src/views/houseSelfCollect/component/routers/route.js

@@ -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;

+ 34 - 0
src/views/houseSelfCollect/customerManagement.vue

@@ -0,0 +1,34 @@
+<!--客户管理-->
+<template>
+  <div>
+   客户管理
+  </div>
+</template>
+<script>
+import {
+  // getList,
+} from '@/model/houseSelfCollect/index'
+
+export default {
+
+  components: {
+
+  },
+  watch: {
+
+  },
+  data() {
+    return {
+ 
+    }
+  },
+  activated() {
+
+  },
+  methods: {
+
+  },
+}
+</script>
+<style lang="scss" scoped>
+</style>

+ 34 - 0
src/views/houseSelfCollect/inspectionManagement.vue

@@ -0,0 +1,34 @@
+<!--质检管理-->
+<template>
+  <div>
+   质检管理
+  </div>
+</template>
+<script>
+import {
+  // getList,
+} from '@/model/houseSelfCollect/index'
+
+export default {
+
+  components: {
+
+  },
+  watch: {
+
+  },
+  data() {
+    return {
+ 
+    }
+  },
+  activated() {
+
+  },
+  methods: {
+
+  },
+}
+</script>
+<style lang="scss" scoped>
+</style>

+ 34 - 0
src/views/houseSelfCollect/paymentManagement.vue

@@ -0,0 +1,34 @@
+<!--客户管理-->
+<template>
+  <div>
+   付款管理
+  </div>
+</template>
+<script>
+import {
+  // getList,
+} from '@/model/houseSelfCollect/index'
+
+export default {
+
+  components: {
+
+  },
+  watch: {
+
+  },
+  data() {
+    return {
+ 
+    }
+  },
+  activated() {
+
+  },
+  methods: {
+
+  },
+}
+</script>
+<style lang="scss" scoped>
+</style>

+ 34 - 0
src/views/houseSelfCollect/weighingManagement.vue

@@ -0,0 +1,34 @@
+<!--检斤管理-->
+<template>
+  <div>
+   检斤管理
+  </div>
+</template>
+<script>
+import {
+  // getList,
+} from '@/model/houseSelfCollect/index'
+
+export default {
+
+  components: {
+
+  },
+  watch: {
+
+  },
+  data() {
+    return {
+ 
+    }
+  },
+  activated() {
+
+  },
+  methods: {
+
+  },
+}
+</script>
+<style lang="scss" scoped>
+</style>