buhuazhen
6 天以前 a29b23b7e52fbea3749733bda3fdd41f04acfc15
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,
  });
}