From 572a1b3aba19e1ffaa7ca785fec91aad7e6c0bcd Mon Sep 17 00:00:00 2001 From: "han\\hanst" Date: Mon, 20 Oct 2025 16:33:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=8B=E5=B7=A5=E6=8B=A3=E9=80=89=E7=9C=8B?= =?UTF-8?q?=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/dashboard/dashboard.js | 6 + src/router/index.js | 3 +- src/views/modules/dashboard/picking-board.vue | 721 ++++++++++++++++++ 3 files changed, 729 insertions(+), 1 deletion(-) create mode 100644 src/api/dashboard/dashboard.js create mode 100644 src/views/modules/dashboard/picking-board.vue diff --git a/src/api/dashboard/dashboard.js b/src/api/dashboard/dashboard.js new file mode 100644 index 0000000..0fa0d23 --- /dev/null +++ b/src/api/dashboard/dashboard.js @@ -0,0 +1,6 @@ +import { createAPI } from "@/utils/httpRequest.js"; + + +export const manualPicking = data => createAPI('/api/dashboard/manualPicking', 'POST', data) + + diff --git a/src/router/index.js b/src/router/index.js index 19aa3e6..30aa1fe 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -19,7 +19,8 @@ const _import = require('./import-' + process.env.NODE_ENV) // 全局路由(无需嵌套上左右整体布局) const globalRoutes = [ { path: '/404', component: _import('common/404'), name: '404', meta: { title: '404未找到' } }, - { path: '/login', component: _import('common/login'), name: 'login', meta: { title: '登录' } } + { path: '/login', component: _import('common/login'), name: 'login', meta: { title: '登录' } }, + { path: '/dashboard-picking-board', component: _import('modules/dashboard/picking-board'), name: 'dashboard-picking-board', meta: { title: '人工拣选看板' } } ] // 主入口路由(需嵌套上左右整体布局) diff --git a/src/views/modules/dashboard/picking-board.vue b/src/views/modules/dashboard/picking-board.vue new file mode 100644 index 0000000..04a86ff --- /dev/null +++ b/src/views/modules/dashboard/picking-board.vue @@ -0,0 +1,721 @@ + + + + + + +