maven
5 天以前 9feea2f82cb21abf58643dcffd875b1ed6f1162b
src/api/inventoryManagement/stockManage.js
@@ -9,6 +9,7 @@
    });
};
// 修改库存信息
export const updateStockManage = (data) => {
    return request({
@@ -44,4 +45,14 @@
        method: 'post',
        data: data
    })
}
}
//根据id获取库存信息
export function getStockManageById(id) {
    return request({
        url: '/stockmanagement/' + id,
        method: 'get'
    })
}
//