无人车卸货

This commit is contained in:
2026-03-11 09:34:01 +08:00
parent 54d402bfe7
commit 9fe461e0f6
2 changed files with 21 additions and 129 deletions

View File

@@ -442,31 +442,17 @@ export const queryIvt = (scode, pcode, mcode, pcsn) => request({
/**
* 无人车
*/
// 无人车卸货(无人车对接)共 (6) 个
// 查询卸货区下拉框
export const queryXhRegion = () => request({
url:'api/notCar/queryXhRegion',
data: {}
})
// 根据区域查询对应点位
export const queryRegionPoint = (rcode) => request({
url:'api/notCar/queryRegionPoint',
data: {region_code: rcode}
})
// 查询目的区域下拉框
export const queryEndRegion = () => request({
url:'api/notCar/queryEndRegion',
// 无人车卸货(无人车对接)共 (3) 个
// 查询无人车点位信息
export const queryNotCarPoint = () => request({
url:'api/notCar/queryNotCarPoint',
data: {}
})
// 卸货
export const unload = (rcode, rows) => request({
export const unload = (rows) => request({
url:'api/notCar/unload',
data: {region_code: rcode, rows: rows}
})
// 等待
export const waiting = () => request({
url:'api/notCar/waiting',
data: {}
data: {rows: rows}
})
// 回库
export const back = () => request({