spring
19 小时以前 fa4ea8dd99638f58da60ac283186113619cc7e6e
src/api/inventoryManagement/stockInventory.js
对比新文件
@@ -0,0 +1,37 @@
import request from "@/utils/request.js";
// 鍒嗛〉鏌ヨ搴撳瓨璁板綍鍒楄〃
export const getStockInventoryListPage = (params) => {
    return request({
        url: "/stockInventory/pagestockInventory",
        method: "get",
        params,
    });
};
// 鍒涘缓搴撳瓨璁板綍
export const createStockInventory = (params) => {
    return request({
        url: "/stockInventory/addstockInventory",
        method: "post",
        data: params,
    });
};
// 鍑忓皯搴撳瓨璁板綍
export const subtractStockInventory = (params) => {
    return request({
        url: "/stockInventory/subtractStockInventory",
        method: "post",
        data: params,
    });
};
export const exportStockInventory = (params) => {
    return request({
        url: "/stockInventory/exportStockInventory",
        method: "post",
        data: params,
    });
};