gaoluyang
2026-05-18 89166f04030795cd8d91ea0b18e0d3ad2f8b43c3
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,
  });
}