From 86462dc79cf879f9a6fd85c434076c7ebf882f7c Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期二, 08 七月 2025 17:25:48 +0800
Subject: [PATCH] 协同审批页面开发

---
 src/api/inventoryManagement/stockIn.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/api/inventoryManagement/stockIn.js b/src/api/inventoryManagement/stockIn.js
index b03b60b..f74c680 100644
--- a/src/api/inventoryManagement/stockIn.js
+++ b/src/api/inventoryManagement/stockIn.js
@@ -13,7 +13,7 @@
 export const updateStockIn = (data) => {
     return request({
         url: "/stockin/update",
-        method: "put",
+        method: "post",
         data,
     });
 };
@@ -31,7 +31,7 @@
 export function delStockIn(ids) {
     return request({
         url: '/stockin/del',
-        method: 'delete',
+        method: 'post',
         data: ids
     })
 }

--
Gitblit v1.9.3