2
schangxiang@126.com
2024-06-12 3aa32719bb3085e85125610987e89202b1fccb50
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import request from '@/api/api.js'
import qs from 'qs'
 
// 获取数据 /api/pdaservice/getWorkPieceByOP80NewCode
export function getWorkPieceByOP80NewCode (data) {
  return request({
    url: `/api/pdaservice/getWorkPieceByOP80NewCode?${qs.stringify(data)}`,
    method: 'get'
  })
}
 
// 出库执行 /api/pdaservice/outBoundWorkPiece
export function outBoundWorkPiece(data) {
  return request({
    url:  `/api/pdaservice/outBoundWorkPiece`,
    method: 'post',
    data
  })
}