222
schangxiang@126.com
2025-09-26 2b05362eba2f989b7857349cc9a3a1c12f8181b6
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"
 
//批量获取工件信息
export function getBarInfoByQuery(data = {}) {
    return request({
        url: `/api/pdaservice/getNoOkWorkPiece?${qs.stringify(data)}`,
        method: 'get'
    })
}
 
//批量更新工件状态
export function updateSomeBarStatus(data) {
    return request({
        url: '/api/pdaservice/updateWorkPieceQualityState',
        method: 'post',
        data
    })
}