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 @@