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