AGV下拉选择站点功能实现

This commit is contained in:
2024-04-30 14:29:44 +08:00
parent 8dd9bdca08
commit b41ebbef0c
3 changed files with 81 additions and 9 deletions

View File

@@ -55,4 +55,28 @@ export function FinisBatchingTask(params) {
method: 'get',
params
})
}
// 返程起点下拉
export function getStartOptions(params) {
return request({
url: '/mes/mm/materialinput/emptycarreturn_start',
method: 'get',
params
})
}
// 返程终点下拉
export function getEndOptions(params) {
return request({
url: '/mes/mm/materialinput/emptycarreturn_end',
method: 'get',
params
})
}
// 所有点位下拉
export function getAllOptions(params) {
return request({
url: '/mes/mm/MmFinishedwarehouse/finish_point',
method: 'get',
params
})
}