gaoluyang
2 天以前 736a4b462e06a3335cb8235c0211bc8f5547bfd6
src/api/inventoryManagement/stockManage.js
@@ -3,7 +3,7 @@
// 查询库存信息列表
export const getStockManagePage = (params) => {
    return request({
        url: "/stockmanagement/page",
        url: "/stockin/listPageCopy",
        method: "get",
        params,
    });
@@ -22,8 +22,8 @@
// 删除库存信息
export function delStockManage(ids) {
    return request({
        url: '/stockmanagement/del',
        method: 'delete',
        url: '/stockin/del',
        method: 'post',
        data: ids
    })
}