gaoluyang
7 天以前 86462dc79cf879f9a6fd85c434076c7ebf882f7c
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
    })
}