|
|
|
@ -454,7 +454,7 @@ export default { |
|
|
|
|
path: `list?keyword=${this.$route.query.keyword || ''}&active=${this.$route.query.active || 0}` |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
name: data.curriculumName |
|
|
|
|
name: this.curriculumName |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
|
|
|
|
@ -916,7 +916,7 @@ export default { |
|
|
|
|
async toSub () { |
|
|
|
|
// 理论试卷 |
|
|
|
|
if (this.isTheory) { |
|
|
|
|
window.open(this.$router.resolve(`/match/theoryExam?paperId=${this.curPaper}&cid=${this.courseId}&mallId=${this.mallId}&curriculumName=${this.curriculumName}`).href) |
|
|
|
|
window.open(this.$router.resolve(`/match/theoryExam?paperId=${this.curPaper}&cid=${this.courseId}&mallId=${this.mallId}&curriculumName=${encodeURIComponent(this.curriculumName)}`).href) |
|
|
|
|
} else { |
|
|
|
|
// 实训 |
|
|
|
|
let curProject = this.projects.find(e => e.projectId == this.curProject) |
|
|
|
|