1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| import {request} from '../../util/request.js'
|
| // 缸盖上线 呼叫物料
| export function callMaterial(data) {
| return request({
| url:`GGoutStock?materialCode=${data.materialCode}&station=${data.station}`,
| method: 'post'
| })
| }
|
| //空托盘回库
| export function emptyBack(data) {
| return request({
| url: `emptyBack?value=${data.station}`,
| method: 'post'
| })
| }
| //获取物料列表
| export function geMaterialList() {
| return request({
| url: `getMaterial?value=''`,
| method: 'post'
| })
| }
|
|