gaoluyang
4 天以前 02c720595ec8c00f8f823857070c151726b237f2
src/api/inventoryManagement/stockIn.js
@@ -9,11 +9,20 @@
    });
};
// 修改库存信息
// 修改入库存信息
export const updateStockIn = (data) => {
    return request({
        url: "/stockin/update",
        method: "put",
        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
    })
}