gaoluyang
7 天以前 1c06a22fd79e05fbeaf01c0c2f27aef1b1f3febd
1
2
3
4
5
6
7
8
9
10
import request from "@/utils/request";
 
// 分页查询
export function getPurchaseList(query) {
  return request({
    url: "/purchase/report/list",
    method: "get",
    params: query,
  });
}