修改bug2.0

This commit is contained in:
李志发
2024-05-18 00:48:44 +08:00
parent 882c47ac00
commit 4ed5f98ea1
16 changed files with 931 additions and 573 deletions

View File

@@ -37,6 +37,13 @@ export const secondExamine = function(query) {
return ajax.postJson(baseURL,'/activityApi/certification/secondExamine',query);
}
export const download = function(data) {
return ajax.get(baseURL,'/activityApi/teacher/download?coursewareId='+data.coursewareId);
}
const exportPdf=function (data){
return ajax.getJsonToFile(baseURL,`/activityApi/teacher/download?coursewareId=${data.coursewareId}`);
}
export default {
pageList,
getTeacherInfo,
@@ -44,5 +51,6 @@ export default {
getCertificationProcess,
setOfflineTutoring,
getReviewResult,
secondExamine
secondExamine,
exportPdf
}