From cc3001ab9e0ab8ce673b812a22ebea1edd332f2a Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期六, 14 三月 2026 15:38:33 +0800
Subject: [PATCH] fix: 完成仓储物流的功能开发
---
src/api/inventoryManagement/stockInRecord.js | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/src/api/inventoryManagement/stockInRecord.js b/src/api/inventoryManagement/stockInRecord.js
new file mode 100644
index 0000000..a2e6535
--- /dev/null
+++ b/src/api/inventoryManagement/stockInRecord.js
@@ -0,0 +1,27 @@
+import request from '@/utils/request'
+
+// 鍏ュ簱绠$悊-鍒嗛〉鏌ヨ鍏ュ簱璁板綍锛堝悎鏍�/涓嶅悎鏍硷級
+export const getStockInRecordListPage = (params) => {
+ return request({
+ url: '/stockInRecord/listPage',
+ method: 'GET',
+ params
+ })
+}
+
+// 鏍规嵁 id 鏌ヨ鍏ュ簱璁板綍璇︽儏
+export const getStockInRecordById = (id) => {
+ return request({
+ url: '/stockInRecord/' + id,
+ method: 'GET'
+ })
+}
+
+// 鎵归噺鍒犻櫎鍏ュ簱璁板綍
+export const batchDeleteStockInRecords = (ids) => {
+ return request({
+ url: '/stockInRecord',
+ method: 'DELETE',
+ data: ids
+ })
+}
--
Gitblit v1.9.3