This commit is contained in:
2025-11-25 18:20:10 +08:00
parent 765f48bd03
commit 6df78ab004
8 changed files with 367 additions and 5 deletions

View File

@@ -217,4 +217,16 @@ export const pause = (agvno, option) => request({
export const resume = (agvno, option) => request({
url:'api/hand/resume',
data: {agv_no: agvno, option: option}
})
})
// 站点管理
// 1.2查询区域
export const selectRegions = () => request({
url:'api/hand/selectRegions',
data: {}
})
// 1.1根据区域查询进出区域信息
export const selectPointInfo = (rcode) => request({
url:'api/hand/selectPointInfo',
data: {region_code: rcode}
})