diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js index 1b041cf..1de2ce9 100644 --- a/frontend/src/router/index.js +++ b/frontend/src/router/index.js @@ -22,6 +22,12 @@ const routes = [ component: () => import('@/views/Material.vue'), meta: { title: '物料跟踪', icon: 'el-icon-box', requiresAuth: true } }, + { + path: 'entry-tracking', + name: 'EntryTracking', + component: () => import('@/views/EntryTracking.vue'), + meta: { title: '入口跟踪', icon: 'el-icon-position', requiresAuth: true } + }, { path: 'production', name: 'Production', diff --git a/frontend/src/views/EntryTracking.vue b/frontend/src/views/EntryTracking.vue new file mode 100644 index 0000000..9e5875f --- /dev/null +++ b/frontend/src/views/EntryTracking.vue @@ -0,0 +1,207 @@ + + + + + diff --git a/frontend/src/views/Layout.vue b/frontend/src/views/Layout.vue index 94bfa24..6bcbb2a 100644 --- a/frontend/src/views/Layout.vue +++ b/frontend/src/views/Layout.vue @@ -71,6 +71,7 @@ const IC = { const MENU = [ { path: '/plan', title: '计划管理', icon: IC.plan }, + { path: '/entry-tracking',title: '入口跟踪', icon: IC.material }, { path: '/material', title: '物料跟踪', icon: IC.material }, { path: '/production', title: '实绩管理', icon: IC.production }, { path: '/process-model', title: '工艺段模型', icon: IC.process },