区域锁定页

This commit is contained in:
2024-08-26 16:05:16 +08:00
parent cf138cf88b
commit 6b9756435b
4 changed files with 170 additions and 32 deletions

View File

@@ -20,6 +20,17 @@ export const handLogin = (user, password) => request({
password: password
}
})
// 区域
export const regionList = () => request({
url:'api/fab/regionList',
method: 'GET'
})
// 区域锁定
export const handheldLock = (code, status) => request({
url:'api/handheld/lock',
data: {region_code: code, status: status}
})
/**
* 空托盘出库
*/