This commit is contained in:
2026-03-19 10:38:40 +08:00
parent 91ce022c61
commit 1a254b38b4
5 changed files with 126 additions and 2 deletions

View File

@@ -510,3 +510,15 @@ export const sendTask = (rows) => request({
url:'api/notCar/sendTask',
data: {rows: rows}
})
// 卸货库存查询(无人车对接)共 (2) 个
// 查询区域下拉框
export const queryIvtRegion = () => request({
url:'api/notCar/queryIvtRegion',
data: {}
})
// 查询数据
export const notCarqueryIvt = (rcode) => request({
url:'api/notCar/queryIvt',
data: {region_code: rcode}
})