gaoluyang
6 天以前 71a9eef518f2f2f1a1eb2fb90f2eb8ab7b155bc8
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,
    });
}