diff --git a/src/api/index.js b/src/api/index.js index 2099b3b..0a3a692 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -2,7 +2,7 @@ import Setting from "@/setting"; const host = Setting.apiBaseURL const uploadURL = Setting.uploadURL -const host1 = 'http://192.168.31.51:9000/' +const host1 = "http://192.168.31.51:9000/"; export default { logins: `users/users/user/login`, @@ -105,9 +105,9 @@ export default { checkPhoneOrEmailExist: `users/users/userInfo/checkPhoneOrEmailExist`, cancelParticipant: `competition/competition/teamParticipant/cancelParticipant`, enquireAboutSchoolStudents: `users/users/userAccount/enquireAboutSchoolStudents`, - frontDeskOverallRanking: `${host1}competition/competition/rank/frontDeskOverallRanking`, - frontOfficeCompetitionRanking: `${host1}competition/competition/rank/frontOfficeCompetitionRanking`, - stageGradeManagementList: `${host1}competition/competition/performance/stageGradeManagementList`, + frontDeskOverallRanking: `competition/competition/rank/frontDeskOverallRanking`, + frontOfficeCompetitionRanking: `competition/competition/rank/frontOfficeCompetitionRanking`, + stageGradeManagementList: `competition/competition/performance/stageGradeManagementList`, // 阿里云文件/视频管理 fileDeletion: `${uploadURL}oss/manage/fileDeletion`, // 删除OSS文件 diff --git a/src/components/quill/index.vue b/src/components/quill/index.vue index 6d19589..45473bf 100644 --- a/src/components/quill/index.vue +++ b/src/components/quill/index.vue @@ -9,7 +9,7 @@ :on-success="editorUploadSuccess" style="display: none" > - 点击上传 + 点击上传 @@ -54,9 +54,15 @@ export default { */ elseRead: { type: String, default: "false" - } + }, + // 当前富文本的索引。一个页面引入多个富文本的时候会无法获取到对应的实例,所以通过在父级存储实例的方式来保存 + index: { + type: Number, + default: 0 + }, }, data() { + const that = this return { headers: { token: util.local.get(Setting.tokenKey) @@ -74,7 +80,7 @@ export default { "image": function(value) { if (value) { // 调用iview图片上传 - document.querySelector(".editorUpload").click(); + document.querySelector("#editorUpload" + that.index).click(); } else { this.Quill.format("image", false); } @@ -85,7 +91,7 @@ export default { placeholder: "", readOnly: this.readonly }, - loading: false + loading: false, }; }, computed: { diff --git a/src/pages/account/login/index.vue b/src/pages/account/login/index.vue index db33aca..ba7fa4d 100644 --- a/src/pages/account/login/index.vue +++ b/src/pages/account/login/index.vue @@ -497,16 +497,16 @@ export default { } this.reloadIndex() - if (this.courseId) { - this.$router.replace(`/preCourse/details?id=${this.courseId}`) - } else if (this.toMatch) { - this.$router.replace(`/touristMatch`) - } else { + // if (this.courseId) { + // this.$router.replace(`/preCourse/details?id=${this.courseId}`) + // } else if (this.toMatch) { + // this.$router.replace(`/touristMatch`) + // } else { // 跳转到教师端的重定向页面 location.href = Setting.isDev ? `http://${location.hostname}:8081/#/redirect?auth=${btoa(this.token)}` : `${location.origin}/admin/#/redirect?auth=${window.btoa(this.token)}` - } + // } }).catch(res => {}) }, // 选择端 diff --git a/src/pages/match/details/index.vue b/src/pages/match/details/index.vue index 5cfa4b5..8727811 100644 --- a/src/pages/match/details/index.vue +++ b/src/pages/match/details/index.vue @@ -51,7 +51,7 @@

{{ rule.stageName }}

比赛时间:{{ rule.startTime && rule.startTime + ' ~ ' + rule.endTime }}

比赛方式:{{ methods.find(e => e.id == rule.method) && methods.find(e => e.id == rule.method).name }}

-

课程系统:{{ rule.systemName }}

+

课程系统:{{ rule.systemName }}

线上地点:{{ rule.onlineAddress }}

线下地点:{{ rule.offlineAddress }}