zhangwencui
5 天以前 6f32ae6d2545c8279032105bf263eb2552fe6a09
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,
    });
}