This commit is contained in:
2025-01-10 15:07:05 +08:00
parent 43ba33062b
commit 19dbe38458
27 changed files with 3498 additions and 527 deletions

View File

@@ -3,7 +3,7 @@
* @Date: 2023-09-12 09:44:53
* @LastEditTime: 2023-09-14 10:25:46
* @LastEditors: DY
* @Description:
* @Description:
*/
import request from '@/utils/request'
@@ -22,4 +22,21 @@ export function getPdList() {
url: '/base/production-line/listAll',
method: 'get'
})
}
}
// 产线统计数据查询-历史
export function getPdlAutoReportNewSearch(data) {
return request({
url: '/monitoring/production-monitor/getPdlAutoReportNewSearch',
method: 'post',
data: data
})
}
// 产线统计数据查询-当前
export function getPdlAutoReportNewSearchNow(data) {
return request({
url: '/monitoring/production-monitor/getPdlAutoReportNewSearchNow',
method: 'post',
data: data
})
}