zhangwencui
3 天以前 a8809c3d35b66f4becc87ac8ac67503aa83c7359
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,
    });
}