新增报表

This commit is contained in:
‘937886381’
2024-04-23 13:52:10 +08:00
parent 5ea4c219ed
commit 2f98b42bd2
7 changed files with 579 additions and 101 deletions

View File

@@ -1,7 +1,7 @@
/*
* @Author: zhp
* @Date: 2024-04-18 09:27:54
* @LastEditTime: 2024-04-22 16:21:26
* @LastEditTime: 2024-04-23 13:37:12
* @LastEditors: zhp
* @Description:
*/
@@ -62,3 +62,19 @@ export function updateAutoDailyData(data) {
data: data
})
}
export function getCWSectionList(query) {
return request({
url: 'base/core-production-line/listAll',
method: 'get',
params: query
})
}
export function getCuttingReportDataList(data) {
return request({
url: 'extend/customized-reports/cuttingReport',
method: 'post',
data: data
})
}