曹睿
6 天以前 901cd45f087ffd434feda0070b174966cc37c8f3
src/api/inventoryManagement/stockManage.js
@@ -9,6 +9,7 @@
    });
};
// 修改库存信息
export const updateStockManage = (data) => {
    return request({
@@ -35,4 +36,23 @@
        params: query,
        responseType: 'blob'
    })
}
}
//出库接口
export const stockOut = (data) => {
    return request({
        url: '/stockmanagement/stockout',
        method: 'post',
        data: data
    })
}
//根据id获取库存信息
export function getStockManageById(id) {
    return request({
        url: '/stockmanagement/' + id,
        method: 'get'
    })
}
//