This commit is contained in:
linxd
2025-06-27 17:15:45 +08:00
parent ad241f7adb
commit 5c54182ca1
33 changed files with 2648 additions and 315 deletions

View File

@ -359,3 +359,15 @@ export async function exportSupplierEvaluate(evaluateTaskId: string) {
getResponse: false,
});
}
/**
* 提交评价任务审批
* @param id 任务ID
* @returns Promise
*/
export async function submitTaskForApproval(id: string) {
return request<API.APIResponse<any>>('/coscoEvaluate/task/submit', {
method: 'POST',
data: { id },
});
}