gaoluyang
2026-04-03 43d53b102f806ec8d406ae0bb25ae7e773fe1f69
src/api/inventoryManagement/stockIn.js
@@ -64,5 +64,20 @@
}
//
//查询库存图表数据
export function getStockInChartData() {
    return request({
        url: '/stockin/listReport',
        method: 'get'
    })
}
// 新增商品入库信息
export function addProduct(data) {
    return request({
        url: '/stockin/addProduct',
        method: 'post',
        data: data
    })
}