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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
| import {request} from '../../utils/request.js'
| import qs from 'qs'
| export function getCallTray(data){ //呼叫空托
| return request({
| url: `/OrderReceipt/getCallTray`,
| method: 'post',
| contentType:'application/json',
| data: data
| })
| }
| // export function getVehicleType(data){ //载具类型
| // return request({
| // url: `/OrderReceipt/getVehicleType`,
| // method: 'post',
| // contentType:'application/json',
| // data: data
| // })
| // }
| export function getContainerTypes(data){ //载具类型
| return request({
| url: `/CriterionEnterWare/getContainerTypes`,
| method: 'post',
| contentType:'application/json',
| data: data
| })
| }
| export function getCollect(data){ //获取目标位置
| return request({
| url: `/OrderReceipt/getStorehouseMouth`,
| method: 'post',
| contentType:'application/json',
| data: data
| })
| }
|
| //获取容器类型列表
| export function getContainerTypesList(data){ //载具类型
| return request({
| url: `/WareContainerType/page?PageNo=1&PageSize=10000`,
| method: 'get',
| })
| }
|
|
| //呼叫空托
| export function callEmptyContainer(data){
| return request({
| url: `/task/callTray`,
| method: 'post',
| data
| })
| }
|
|