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' }) } //