From bfaaa299a0aebd4ccc488cbe5a67e7d73304fb2c Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期五, 24 四月 2026 15:56:03 +0800
Subject: [PATCH] fix: 图片预览路径替换为link

---
 src/api/inventoryManagement/stockInventory.js |   37 ++++++++++++++++++++++++++++++++++++-
 1 files changed, 36 insertions(+), 1 deletions(-)

diff --git a/src/api/inventoryManagement/stockInventory.js b/src/api/inventoryManagement/stockInventory.js
index 3454ce4..4225227 100644
--- a/src/api/inventoryManagement/stockInventory.js
+++ b/src/api/inventoryManagement/stockInventory.js
@@ -2,7 +2,7 @@
 // 鍒嗛〉鏌ヨ搴撳瓨璁板綍鍒楄〃
 export const getStockInventoryListPage = (params) => {
     return request({
-        url: "/stockInventory/pagestockInventory",
+        url: "/stockInventory/pageListCombinedStockInventory",
         method: "get",
         params,
     });
@@ -25,3 +25,38 @@
         data: params,
     });
 };
+
+export const getStockInventoryReportList = (params) => {
+    return request({
+        url: "/stockInventory/stockInventoryPage",
+        method: "get",
+        params,
+    });
+};
+
+export const getStockInventoryInAndOutReportList = (params) => {
+    return request({
+        url: "/stockInventory/stockInAndOutRecord",
+        method: "get",
+        params,
+    });
+};
+
+// 鍐荤粨搴撳瓨璁板綍
+export const frozenStockInventory = (params) => {
+    return request({
+        url: "/stockInventory/frozenStock",
+        method: "post",
+        data: params,
+    });
+};
+
+// 瑙e喕搴撳瓨璁板綍
+export const thawStockInventory = (params) => {
+    return request({
+        url: "/stockInventory/thawStock",
+        method: "post",
+        data: params,
+    });
+};
+

--
Gitblit v1.9.3