待检任务检测历史的前后端代码

This commit is contained in:
2025-07-25 17:10:33 +08:00
parent 3f455b773a
commit b41c015b57
19 changed files with 251 additions and 174 deletions

View File

@@ -42,3 +42,11 @@ export function delCheckTaskItem(itemId) {
method: 'delete'
})
}
export function updateCheckTaskItemStatus(data) {
return request({
url: '/qc/checkTaskItem/updateStatus',
method: 'put',
data // 需要包含checkTaskId、checkItemId、status
})
}