schangxiang@126.com
2025-05-20 e92383f760f42050f55aa032c649814deb3b7752
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import request from '@/api/api.js'
import qs from 'qs'
 
 
// 返回目标工位
export function getLoadingDeliveryEnd (data) {
  return request({
    url: `/api/loadingDelivery/LoadingDeliveryEnd?${qs.stringify(data)}`,
    method: 'get'
  })
}
 
// 创建agv任务
export function loadingDeliveryCreate (data) {
  return request({
    url: `/api/loadingDelivery/LoadingDeliveryCreate`,
    method: 'post',
    data
  })
}
 
// 装料完成
export function loadingDeliveryContinueOne (data) {
  return request({
    url: `/api/loadingDelivery/LoadingDeliveryContinueOne`,
    method: 'post',
    data
  })
}
 
// 取料完成
export function loadingDeliveryContinueTwo (data) {
  return request({
    url: `/api/loadingDelivery/LoadingDeliveryContinueTwo`,
    method: 'post',
    data
  })
}