bug
liuying
2024-04-25 cdacaa3a770e30582d57b9c4aef379b7da65c8c7
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
import { axios } from '@/utils/request'
 
/**
 * 手动入库
 *
 * @author yhh
 */
export function BindEntranceManualWare (parameter) {
  return axios({
    url: '/PlywoodGroupDisk/PlywoodManualWare',
    method: 'post',
    data: parameter
  })
}
 
/**
 * 获取托盘信息
 *
 * @author yhh
 */
export function BindEntranceGetContainer (parameter) {
  return axios({
    url: '/PlywoodGroupDisk/PlywoodGetContainer',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 组盘接口
 *
 * @author yhh
 */
export function BindAction (parameter) {
  return axios({
    url: '/PlywoodGroupDisk/PlywoodBindEntrance',
    method: 'post',
    data: parameter
  })
}