yaowanxin
2 天以前 7f62206b93909e643a32cd39dee0294338885e2e
1
2
3
4
5
6
7
8
9
10
11
// 生产报工页面接口
import request from "@/utils/request";
 
// 分页查询
export function productionProductMainListPage(query) {
    return request({
        url: "/productionProductMain/listPage",
        method: "get",
        params: query,
    });
}