From def3ef24a0df4b2d7c5fef4d0599e4e7602cca76 Mon Sep 17 00:00:00 2001 From: wangyu <823267011@qq.com> Date: Sat, 27 Jun 2026 14:20:10 +0800 Subject: [PATCH] =?UTF-8?q?feat(entry-tracking):=20=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=85=A5=E5=8F=A3=E8=B7=9F=E8=B8=AA=E7=8B=AC=E7=AB=8B=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=EF=BC=8811=C3=972=20=E4=BD=8D=E7=BD=AE=E7=BD=91?= =?UTF-8?q?=E6=A0=BC=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 /entry-tracking 路由与导航入口 - 11 列 × 2 行位置卡(上卷小车/称重位/地辊/上卷鞍座/倒卷小车) - 1#地辊 绑生产中卷,2#地辊 绑在线队首 - 底部入口队列表保留「移动」按钮(计划→生产中) --- frontend/src/router/index.js | 6 + frontend/src/views/EntryTracking.vue | 207 +++++++++++++++++++++++++++ frontend/src/views/Layout.vue | 1 + 3 files changed, 214 insertions(+) create mode 100644 frontend/src/views/EntryTracking.vue 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 },