|
@@ -385,14 +385,17 @@
|
|
|
if (!flag) {
|
|
|
return;
|
|
|
}
|
|
|
+ if(!localStorage.getItem('t_userInfo')){
|
|
|
+ return;
|
|
|
+ }
|
|
|
let examId = this.$tools.guid();
|
|
|
let apiPapers = this.getPaperInfo(examId);
|
|
|
let requestData = {
|
|
|
jointEventId: this.$route.params.data.id,
|
|
|
jointGroupId: this.$route.params.jointGroupId,
|
|
|
jointScheduleId: this.$route.params.jointScheduleId,
|
|
|
- jointExamId: "",
|
|
|
- creatorId: this.$route.params.data.creatorId,
|
|
|
+ jointExamId: "",
|
|
|
+ creatorId: JSON.parse(decodeURIComponent(localStorage.getItem('t_userInfo'), "utf-8")).id,
|
|
|
name: this.evaluationInfo.name,
|
|
|
source: this.evaluationInfo.source,
|
|
|
papers: apiPapers
|