生产数据汇总

This commit is contained in:
helloDy
2024-04-25 08:40:08 +08:00
parent 43c9153777
commit 61567ce86a
7 changed files with 253 additions and 109 deletions

View File

@@ -1,7 +1,7 @@
/*
* @Author: Do not edit
* @Date: 2023-12-08 10:26:48
* @LastEditTime: 2023-12-13 17:16:00
* @LastEditTime: 2024-04-24 16:31:37
* @LastEditors: DY
* @Description:
*/
@@ -59,3 +59,39 @@ export function exportGlasscExcel(query) {
responseType: 'blob'
})
}
// 生产月报查询--冷端生产线
export function productionMonthY(data) {
return request({
url: '/extend/customized-reports/productionMonthY',
method: 'post',
data: data
})
}
// 生产月报查询--深加工生产线
export function productionMonthD(data) {
return request({
url: '/extend/customized-reports/productionMonthD',
method: 'post',
data: data
})
}
// 生产年报查询--冷端生产线
export function productionYearY(data) {
return request({
url: '/extend/customized-reports/productionYearY',
method: 'post',
data: data
})
}
// 生产年报查询--冷端生产线
export function productionYearD(data) {
return request({
url: '/extend/customized-reports/productionYearD',
method: 'post',
data: data
})
}