This commit is contained in:
砂糖
2025-07-25 15:09:08 +08:00
parent 4a567e6fb9
commit 3f455b773a
10 changed files with 1278 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询检查任务与检查项关联列表
export function listCheckTaskItem(query) {
return request({
url: '/qc/checkTaskItem/list',
method: 'get',
params: query
})
}
// 查询检查任务与检查项关联详细
export function getCheckTaskItem(itemId) {
return request({
url: '/qc/checkTaskItem/' + itemId,
method: 'get'
})
}
// 新增检查任务与检查项关联
export function addCheckTaskItem(data) {
return request({
url: '/qc/checkTaskItem',
method: 'post',
data: data
})
}
// 修改检查任务与检查项关联
export function updateCheckTaskItem(data) {
return request({
url: '/qc/checkTaskItem',
method: 'put',
data: data
})
}
// 删除检查任务与检查项关联
export function delCheckTaskItem(itemId) {
return request({
url: '/qc/checkTaskItem/' + itemId,
method: 'delete'
})
}