From 72ae3c97c344694addc7990b42ea0fc8ef513e7f Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期五, 01 十二月 2023 15:24:53 +0800 Subject: [PATCH] new file: src/api/quality/packageInspect.js modified: src/router/views/index.js modified: src/views/plan/productionschedul/index.vue modified: src/views/quality/Packaging_ledger/index.vue modified: src/views/quality/Packaging_ledger/pack-from.vue new file: src/views/quality/packageinspect/index.vue new file: src/views/quality/packageinspect/packageInspect-form.vue modified: vue.config.js --- src/router/views/index.js | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git a/src/router/views/index.js b/src/router/views/index.js index b3402ed..20e8be7 100644 --- a/src/router/views/index.js +++ b/src/router/views/index.js @@ -145,6 +145,23 @@ ] }, { + path: '/quality/packageinspect', + component: Layout, + children: [ + { + path: 'packageInspect-form', + name: 'packageInspectForm', + component: () => + import(/* webpackChunkName: "views" */ '@/views/quality/packageinspect/packageInspect-form'), + meta: { + keepAlive: false, + isTab: false, + isAuth: false + } + } + ] + }, + { path: '/quality/rawMaterial', component: Layout, children: [ @@ -162,6 +179,40 @@ ] }, { + path: '/quality/finishedProduct', + component: Layout, + children: [ + { + path: 'finishedProduct-form', + name: 'finishedProductForm', + component: () => + import(/* webpackChunkName: "views" */ '@/views/quality/finishedProductInspection/finishedProduct-form'), + meta: { + keepAlive: false, + isTab: false, + isAuth: false + } + } + ] + }, + { + path: '/quality/processInspect', + component: Layout, + children: [ + { + path: 'processInspect-form', + name: 'processInspectForm', + component: () => + import(/* webpackChunkName: "views" */ '@/views/quality/processInspect/processInspect-form'), + meta: { + keepAlive: false, + isTab: false, + isAuth: false + } + } + ] + }, + { path: '/quality/newReport', component: Layout, children: [ -- Gitblit v1.9.3