Files
klp-mono/apps/hand-factory/api/business/report.js

21 lines
367 B
JavaScript
Raw Normal View History

2026-01-15 20:18:37 +08:00
import zinc1Request from '@/utils/zinc1Request'
2026-01-15 18:37:39 +08:00
// 生产实绩汇总
export function getReportSummary(params) {
2026-01-15 20:18:37 +08:00
return zinc1Request({
2026-01-15 18:37:39 +08:00
url: '/api/report/summary',
method: 'get',
2026-01-15 20:18:37 +08:00
params
2026-01-15 18:37:39 +08:00
})
}
// 生产实绩明细
export function getReportDetails(params) {
2026-01-15 20:18:37 +08:00
return zinc1Request({
2026-01-15 18:37:39 +08:00
url: '/api/report/details',
method: 'get',
2026-01-15 20:18:37 +08:00
params
2026-01-15 18:37:39 +08:00
})
}