张诺
2026-02-03 b6188013758c5e15bde9fe4a0e1dbb47334390b0
1
2
3
4
5
6
7
8
9
10
11
// 生产产出页面接口
import request from "@/utils/request";
 
// 分页查询
export function productionProductOutputListPage(query) {
    return request({
        url: "/productionProductOutput/listPage",
        method: "get",
        params: query,
    });
}