用户二级评估-直接评估功能

This commit is contained in:
sjl
2025-08-27 09:22:55 +08:00
parent cf91f53b45
commit 17493f9c26
2 changed files with 86 additions and 25 deletions

View File

@@ -383,10 +383,21 @@ export const evaluation = (assessId: string, file: File) => {
}
//直接评估
export function assessResult(data: {
assessId: string | number,
endTime: string,
id: string | number,
startTime: string
}) {
return createAxios({
url: `/advance-boot/secondaryEvaluation/lineEvaluation`,
method: 'post',
data
});
}
//下载模板
export const downloadAssessTemplate = () => {
//下载模板
export const downloadAssessTemplate = () => {
return createAxios({
url: '/advance-boot/secondaryEvaluation/downTemplateAssessResult',
method: 'get',