gaoluyang
2025-11-25 cc03b9f155c71fa29f5134cb978404240000399c
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,
  });
}