From be9356163753247c7e177d7ae98cad01cbfb954a Mon Sep 17 00:00:00 2001
From: caill <815519168@qq.com>
Date: Fri, 27 Jan 2023 19:45:30 +0800
Subject: [PATCH] =?UTF-8?q?=E8=B4=B4=E6=A0=87=E8=A1=A5=E7=A0=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages.json | 7 ++
pages/WarehouseManage/InStoreConfirm.vue | 2 +-
pages/WarehouseManage/LabelBind.vue | 95 ++++++++++++++++++++++++
utils/getData2.js | 19 +++++
4 files changed, 122 insertions(+), 1 deletion(-)
create mode 100644 pages/WarehouseManage/LabelBind.vue
diff --git a/pages.json b/pages.json
index a550ed3..55d3def 100644
--- a/pages.json
+++ b/pages.json
@@ -221,6 +221,13 @@
{
"navigationStyle": "custom"
}
+ },
+ {
+ "path": "pages/WarehouseManage/LabelBind",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
}
],
"globalStyle": {
diff --git a/pages/WarehouseManage/InStoreConfirm.vue b/pages/WarehouseManage/InStoreConfirm.vue
index e2b4dee..b96bde6 100644
--- a/pages/WarehouseManage/InStoreConfirm.vue
+++ b/pages/WarehouseManage/InStoreConfirm.vue
@@ -62,7 +62,7 @@
-
+
diff --git a/pages/WarehouseManage/LabelBind.vue b/pages/WarehouseManage/LabelBind.vue
new file mode 100644
index 0000000..bf1878e
--- /dev/null
+++ b/pages/WarehouseManage/LabelBind.vue
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+ 木箱
+
+
+
+
+
+
+
+ 点位
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/utils/getData2.js b/utils/getData2.js
index 3e11dc1..7d7c79e 100644
--- a/utils/getData2.js
+++ b/utils/getData2.js
@@ -60,6 +60,7 @@ export const authority = () => {
{menu_id: '4', name: '拆分入库', path: '/pages/WarehouseManage/InStoreSplit'},
{menu_id: '5', name: '生产区发货', path: '/pages/WarehouseManage/ProdDeliveryConfirm'},
{menu_id: '6', name: '虚拟区发货', path: '/pages/WarehouseManage/XuniDelivery'},
+ {menu_id: '7', name: '贴标捆扎', path: '/pages/WarehouseManage/LabelBind'}
]},
{menu_id: '7', path: 'RF07', name: '在库管理', sonTree: [
{menu_id: '1', name: '盘点管理', path: '/pages/WarehouseManage/CheckList'},
@@ -440,4 +441,22 @@ url:'api/pda/task/confirm',
data: {
task_rows: row
}
+})
+/**
+ * 贴标捆扎
+ */
+// 1.1贴标
+export const mendCode = (no) => request({
+url:'api/pda/st/mendCode',
+data: {
+ box_no: no
+}
+})
+//1.2捆扎
+export const stBale = (no, code) => request({
+url:'api/pda/st/bale',
+data: {
+ box_no: no,
+ point_code: code
+}
})
\ No newline at end of file