spring
6 天以前 4b880d0ffda44f9ceeb82d1945c95cd5561572ce
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
    })
}