dev_202412
yujialong 4 months ago
parent db3f21f48b
commit 571673fe8a
  1. 2
      src/layouts/navbar/index.vue
  2. 2
      src/pages/station/list/index.vue
  3. 4
      src/pages/station/preview/index.vue

@ -37,7 +37,7 @@ export default {
loginedMenu: [
{
id: "/station/list",
name: "实验台"
name: "教学中心"
},
{
id: "/appraisal/list",

@ -134,7 +134,7 @@ export default {
this.links = item.nonAssociatedLinks
}
} else {
this.$router.push(`/station/preview?courseId=${item.cid || ''}&curriculumName=${item.goodsName}&mallId=${item.mallId || ''}&keyword=${this.keyword}&active=${this.active}`)
this.$router.push(`/station/preview?courseId=${item.cid || ''}&curriculumName=${encodeURIComponent(item.goodsName)}&mallId=${item.mallId || ''}&keyword=${this.keyword}&active=${this.active}`)
}
}
},

@ -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)

Loading…
Cancel
Save