cargoSelect.js
1.16 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import request from '@/utils/request'
//货物查询查询条件数据
/**
* @param
*/
export function findConditionData(data) {
return request({
url: '/cargo/findConditionData',
method: 'post',
data: data
})
}
//货物查询
/**
* @param
*/
export function findCargoData(data) {
return request({
url: '/cargo/findCargoData',
method: 'post',
data: data
})
}
//货物预审查询
export function findCagroPreData(data) {
return request({
url: '/cargo/findCagroPreData',
method: 'post',
data: data
})
}
//货物配舱查询
export function findCargoAllocationData(data) {
return request({
url: '/cargo/findCargoAllocationData',
method: 'post',
data: data
})
}
//手动配舱
export function allocationFlight(data){
return request({
url:'/cargo/allocationFlight',
method:'post',
data:data
})
}
//导出excel
export function downloadExcel(data) {
return request({
url: '/cargo/excel',
method: 'post',
data: data,
responseType: 'blob',
})
}
//释放仓位
export function releaseCargo(data) {
return request({
url: '/cargo/releaseCargo',
method: 'post',
data: data,
})
}