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