You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.3 KiB
JavaScript

import request from '@/utils/request'
// 查询自检互检列表
export function listSelfMutualInspection(query) {
return request({
url: '/mes/inspectionReport/selfMutualInspectionList',
method: 'get',
params: query
})
}
// 查询自检互检上方和下方数据
export function getSelfMutualInspectionData(query) {
return request({
url: '/mes/inspectionReport/selfMutualInspectionData',
method: 'get',
params: query
})
}
// 查询组线列表
export function getLineCodeList(query) {
return request({
url: '/mes/inspectionReport/getLineCodeList',
method: 'get',
params: query
});
}
// 查询首检左侧
export function listFirstInspectionLeft(query) {
return request({
url: '/mes/inspectionReport/listFirstInspectionLeft',
method: 'get',
params: query
})
}
// 查询首检右侧
export function listFirstInspectionRight(query) {
return request({
url: '/mes/inspectionReport/listFirstInspectionRight',
method: 'get',
params: query
})
}
// 查询点检
export function listPointInspection(query) {
return request({
url: '/mes/inspectionReport/listPointInspection',
method: 'get',
params: query
})
}
// 查询点检listCheckBox
export function listCheckBox(query) {
return request({
url: '/mes/inspectionReport/listCheckBox',
method: 'get',
params: query
})
}