buhuazhen
昨天 2ebf0d9c4f4024d363f7e26c3847a3280cb22b43
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,
  });
}