gaoluyang
9 天以前 80ef3a1fb42f37cde2e9753317e118c50379b095
src/api/inventoryManagement/stockInventory.js
@@ -103,3 +103,22 @@
    });
};
// 库存预警分页
export const warnPage = (params) => {
    return request({
        url: "/stockInventory/warnPage",
        method: "get",
        params,
    });
};
// 库存预警导出
export const warnExport = (params) => {
    return request({
        url: "/stockInventory/warnExport",
        method: "get",
        params,
        responseType: "blob",
    });
};