diff --git a/src/pages/course/details/index.vue b/src/pages/course/details/index.vue index b3a7dc0..12223d0 100644 --- a/src/pages/course/details/index.vue +++ b/src/pages/course/details/index.vue @@ -151,7 +151,7 @@ export default { let res = await this.$get(`${this.api.queryChaptersAndSubsections}?courseId=${this.id}`) this.chapterList = res.chapterList if (this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) { - this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name); + this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name, 0); } }, insertScript(){ @@ -170,9 +170,9 @@ export default { if('mp4,3gp,mov,m4v,avi,dat,mkv,flv,vob,rmvb,rm,qlv'.includes(ext)) return '视频' return ext }, - preview(row, chapterName){ + preview(row, chapterName, showConfirm = 1){ // 如果没登录,直接去登录 - if (!util.local.get(Setting.tokenKey)) { + if (!util.local.get(Setting.tokenKey) && showConfirm) { this.$confirm('请先登录,是否直接前往登录?', "提示", { type: 'success' }).then(() => { @@ -359,7 +359,7 @@ $height: 700px; .desc-wrap{ position: relative; .desc{ - font-size: 14px; + font-size: 12px; color: #fff; line-height: 22px; @include mul-ellipsis(4); @@ -411,7 +411,7 @@ $height: 700px; background-color: #121214; .sectionName{ margin: 12px 0; - font-size: 14px; + font-size: 12px; color: #999; cursor: pointer; @include ellipsis; diff --git a/src/pages/screen/index.vue b/src/pages/screen/index.vue index b026e52..44029c1 100644 --- a/src/pages/screen/index.vue +++ b/src/pages/screen/index.vue @@ -414,7 +414,7 @@ export default { show:false, x : 'center', y : 'bottom', - data:['参考总场次', '参考人数'] + data:['考试总场次', '考试人数'] }, toolbox: { }, diff --git a/src/pages/station/preview/index.vue b/src/pages/station/preview/index.vue index 95cea99..660e5e8 100644 --- a/src/pages/station/preview/index.vue +++ b/src/pages/station/preview/index.vue @@ -381,6 +381,9 @@ export default { if (systemId == 11) { // 银行系统 location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${this.courseId}&systemId=${this.systemIds}&projectId=${this.curProject}&assessmentId=&classId=&stopTime=&test=true` + } else if (systemId == 12) { + // 众筹系统 + window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${this.courseId}&projectId=${this.curProject}&token=${token}`); } else if (systemId == 21) { window.open(`http://121.37.29.24:80/yyyflogin?userId=${this.userId}&userName=${userName}&userType=${roleId}&reqType=1&reqId=3989a0ad671849b99dcbdcc208782333&caseId=9681f86902314b10bc752909121f9ab9&authorization=87DIVy348Oxzj3ha&classId=1876&courserId=7ff5d4715b114b7398b6f26c20fac460`); } else if (systemId == 22) { @@ -466,7 +469,7 @@ $height: 700px; .desc-wrap{ position: relative; .desc{ - font-size: 14px; + font-size: 12px; color: rgba(0, 0, 0, 0.65); line-height: 22px; @include mul-ellipsis(2); @@ -518,7 +521,7 @@ $height: 700px; background-color: #121214; .sectionName{ margin: 12px 0; - font-size: 14px; + font-size: 12px; color: #999; cursor: pointer; @include ellipsis;