maven
5 天以前 fdf1aa64b0a502d7137a81dc8a32b8f697894dd5
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
    })
}