chenhj
2026-04-25 28c608a765864a5677d5720099ae98d9f84b2d66
1
2
3
4
5
6
7
8
9
10
11
// 采购报表页面接口
import request from "@/utils/request";
 
// 采购业务汇总表分页查询
export function procurementBusinessSummaryListPage(query) {
  return request({
    url: "/procurementBusinessSummary/listPage",
    method: "get",
    params: query,
  });
}