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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
| import { axios } from '@/utils/request'
|
| /**
| * 获取库区列表
| *
| * @author yhh
| */
| export function GetArea () {
| return axios({
| url: '/Foaminglocationview/GetArea',
| method: 'get'
| })
| }
|
|
| /**
| * 根据库区获取巷道
| *
| * @author yhh
| */
| export function GetAisle (parameter) {
| return axios({
| url: '/Foaminglocationview/GetPalceAisle',
| method: 'get',
| params: parameter
| })
| }
|
| /**
| * 根据库区获取排列表
| *
| * @author yhh
| */
| export function GetPalceRowno (parameter) {
| return axios({
| url: '/Foaminglocationview/GetPalceRowno',
| method: 'get',
| params: parameter
| })
| }
|
| /**
| * 获取一个排中的库位列表
| *
| * @author yhh
| */
| export function GetPalceList (parameter) {
| return axios({
| url: '/Foaminglocationview/GetPalceList',
| method: 'get',
| params: parameter
| })
| }
|
| /**
| * 获取库区详情
| *
| * @author yhh
| */
| export function GetLocationDetail (parameter) {
| return axios({
| url: '/Foaminglocationview/GetMaterialDetail',
| method: 'get',
| params: parameter
| })
| }
|
| /**
| * 更新库位锁定状态
| *
| * @author yhh
| */
| export function UpdateLock (parameter) {
| return axios({
| url: '/Foaminglocationview/UpdatePalceIslock',
| method: 'get',
| params: parameter
| })
| }
|
| /**
| * 更新库位空闲状态
| *
| * @author yhh
| */
| export function UpdateEmpty (parameter) {
| return axios({
| url: '/Foaminglocationview/UpdatePalceKongXian',
| method: 'get',
| params: parameter
| })
| }
|
|