gaoluyang
2026-06-01 baa5da182d9f141d6d3d5af393cbf48e84d58875
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,
  });
}