From 79f870c864a9d5ec530b0f5d15039ddf47cc2a85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=85=B4=E8=BE=89?= Date: Mon, 24 Mar 2025 14:41:05 +0800 Subject: [PATCH] =?UTF-8?q?9)=20=E8=B0=83=E6=8B=A8=E5=85=A5=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/common/index.ts | 8 + src/views/stockIn/AllocateStockIn/index.vue | 537 +++++++++----------- 2 files changed, 238 insertions(+), 307 deletions(-) diff --git a/src/api/common/index.ts b/src/api/common/index.ts index 5eedab9..985cde7 100644 --- a/src/api/common/index.ts +++ b/src/api/common/index.ts @@ -116,4 +116,12 @@ export function undoCommit(queryParams: any) { method: 'post', data: queryParams, }); +} + +export function allocateStockInCommit(data: any) { + return request({ + url: '/api/AllocateStockIn/commit', + method: 'post', + data: data, + }); } \ No newline at end of file diff --git a/src/views/stockIn/AllocateStockIn/index.vue b/src/views/stockIn/AllocateStockIn/index.vue index db6a393..04f2236 100644 --- a/src/views/stockIn/AllocateStockIn/index.vue +++ b/src/views/stockIn/AllocateStockIn/index.vue @@ -1,22 +1,8 @@