张诺
2026-02-02 59ef95ae90d3e9815afabc751e92c39d1ccf43cb
1
2
3
4
5
6
7
8
9
10
import request from "@/utils/request";
 
// 查询库存预警台账列表
export const getStockWarningLedgerPage = (params) => {
  return request({
    url: "/customStorageWarning/pageList",
    method: "get",
    params,
  });
};