From dc31b23912f396f13fa2bba4dadf019541f15186 Mon Sep 17 00:00:00 2001 From: leo <10200039@qq.com> Date: Fri, 21 Apr 2023 11:46:44 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8F=9C=E5=8D=95=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/module/base-routes.ts | 71 ++++++++++++++++---------------- 1 file changed, 36 insertions(+), 35 deletions(-) diff --git a/src/router/module/base-routes.ts b/src/router/module/base-routes.ts index 6719401..664453d 100644 --- a/src/router/module/base-routes.ts +++ b/src/router/module/base-routes.ts @@ -55,7 +55,42 @@ export default [ meta: { title: '我参与的', icon: "" }, } ] - }, { + }, + { + path: '/materia', + component: BaseLayout, + meta: { title: '物料路线' }, + children: [ + { + path: '/materia/all', + component: () => import('../../views/materia/all.vue'), + meta: { title: '物料记录', icon: "" }, + }, + { + path: '/materia/route', + component: () => import('../../views/materia/route.vue'), + meta: { title: '物料事项', icon: "" }, + } + ] + }, + { + path: '/half', + component: BaseLayout, + meta: { title: '试验号变更' }, + children: [ + { + path: '/half/half', + component: () => import('../../views/half/half.vue'), + meta: { title: '试验号路线', icon: "" }, + }, + { + path: '/half/route', + component: () => import('../../views/half/route.vue'), + meta: { title: '试验号事项', icon: "" }, + } + ] + }, + { path: '/order', component: BaseLayout, meta: { title: '清单管理' }, @@ -114,40 +149,6 @@ export default [ } ] }, - { - path: '/materia', - component: BaseLayout, - meta: { title: '物料路线' }, - children: [ - { - path: '/materia/all', - component: () => import('../../views/materia/all.vue'), - meta: { title: '物料记录', icon: "" }, - }, - { - path: '/materia/route', - component: () => import('../../views/materia/route.vue'), - meta: { title: '物料事项', icon: "" }, - } - ] - }, - { - path: '/half', - component: BaseLayout, - meta: { title: '半成品实验号变更' }, - children: [ - { - path: '/half/half', - component: () => import('../../views/half/half.vue'), - meta: { title: '配方变更', icon: "" }, - }, - { - path: '/half/route', - component: () => import('../../views/half/route.vue'), - meta: { title: '半成品变更事项', icon: "" }, - } - ] - }, { path: '/log/log', component: BaseLayout,