src/api/productionManagement/productionProductMain.js
@@ -27,3 +27,21 @@
        params: query,
    });
}
// 计件工资汇总(按人员)
export function wageSummary(query) {
    return request({
        url: "/productionProductMain/wageSummary",
        method: "get",
        params: query,
    });
}
// 产量统计(dimension: device/operation/product)
export function outputStat(query) {
    return request({
        url: "/productionProductMain/outputStat",
        method: "get",
        params: query,
    });
}