gaoluyang
4 天以前 6784281753fefac72e044cb52b0e3b22615841e4
src/api/inventoryManagement/stockIn.js
@@ -9,10 +9,19 @@
    });
};
// 修改库存信息
// 修改入库存信息
export const updateStockIn = (data) => {
    return request({
        url: "/stockin/update",
        method: "post",
        data,
    });
};
// 修改库存信息
export const updateManagement = (data) => {
    return request({
        url: "/stockin/updateManagement",
        method: "post",
        data,
    });
@@ -31,7 +40,7 @@
export function delStockIn(ids) {
    return request({
        url: '/stockin/del',
        method: 'delete',
        method: 'post',
        data: ids
    })
}