提交代码

This commit is contained in:
2025-08-15 11:16:38 +08:00
parent 253825ab0c
commit d8e978cbfb
2 changed files with 23 additions and 6 deletions

View File

@@ -139,3 +139,10 @@ export function delAuditDetails(id) {
method: 'post'
})
}
//撤销审核
export function cancelAudit(id) {
return request({
url: '/comprehensive/auditDetails/cancelAudit/'+id,
method: 'post'
})
}