缺少产线时间冲突爆红问题

This commit is contained in:
2025-07-18 21:53:17 +08:00
parent c2b6e54a09
commit b09733d575
18 changed files with 1388 additions and 159 deletions

View File

@@ -42,3 +42,12 @@ export function delProductionLine(lineId) {
method: 'delete'
})
}
// 新增:产线甘特图接口
export function ganttProductionLine(params) {
return request({
url: '/wms/productionLine/gantt',
method: 'get',
params
});
}