gaoluyang
6 天以前 c7b4b9a2f4c0f05aeb60a9e3f5fba5d9a3676f3f
1
2
3
4
5
6
7
8
9
10
11
// 生产核算页面接口
import request from "@/utils/request";
 
// 分页查询
export function productionAccountingListPage(query) {
  return request({
    url: "/salesLedger/productionAccounting/listPage",
    method: "get",
    params: query,
  });
}