模版下载

This commit is contained in:
sjl
2025-08-26 15:39:20 +08:00
parent 1fb833c6ad
commit cf91f53b45
4 changed files with 355 additions and 214 deletions

View File

@@ -366,7 +366,7 @@ export function exportResult(data: any, assessId?: string | number) {
}
//评估
//导入评估
export const evaluation = (assessId: string, file: File) => {
const formData = new FormData()
formData.append('assessId', assessId)
@@ -380,4 +380,16 @@ export const evaluation = (assessId: string, file: File) => {
'Content-Type': 'multipart/form-data'
}
})
}
}
//直接评估
//下载模板
export const downloadAssessTemplate = () => {
return createAxios({
url: '/advance-boot/secondaryEvaluation/downTemplateAssessResult',
method: 'get',
responseType: 'blob'
})
}