gongchunyi
10 天以前 c0f98575ff303ef8a2577bfc443b78426d17aa6b
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,
  });
}