From 4b94c31f91e1761234c46d37147cb53462b7116e Mon Sep 17 00:00:00 2001 From: Amjacks <1932302177@qq.com> Date: Fri, 21 Mar 2025 14:55:00 +0800 Subject: [PATCH] =?UTF-8?q?feat=20=E6=89=93=E5=8D=B0=E8=AF=B7=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/label/index.ts | 11 +++++ .../flatWarehouse/wareHouseLocation/index.vue | 40 +++++++++++++++++-- 2 files changed, 48 insertions(+), 3 deletions(-) diff --git a/src/api/label/index.ts b/src/api/label/index.ts index 223680c..d196073 100644 --- a/src/api/label/index.ts +++ b/src/api/label/index.ts @@ -120,4 +120,15 @@ export function checkMaterialPack(data: any) { method: 'post', data: data, }); +} + +/** + * 打印标签 + * */ +export function printStorage(data: any) { + return request({ + url: '/api/api/label/storagePrint', + method: 'post', + data: data, + }); } \ No newline at end of file diff --git a/src/views/basics/flatWarehouse/wareHouseLocation/index.vue b/src/views/basics/flatWarehouse/wareHouseLocation/index.vue index 8b3b0ea..8e74718 100644 --- a/src/views/basics/flatWarehouse/wareHouseLocation/index.vue +++ b/src/views/basics/flatWarehouse/wareHouseLocation/index.vue @@ -93,6 +93,25 @@ + +
+ + + + + + + + + + + + 打印 + + + + +
@@ -119,12 +138,14 @@ export default {