From 285de23c338d73e16a2893849ecbde48ef39f783 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Fri, 2 Aug 2024 17:00:20 +0800 Subject: [PATCH] fix --- src/api/index.js | 3 +-- src/pages/course/details/index.vue | 2 +- src/pages/station/preview/index.vue | 16 ++++++++-------- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/src/api/index.js b/src/api/index.js index 508396c..2d5d2f3 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -26,8 +26,7 @@ export default { heartbeatDetection: `nakadai/message/heartbeatDetection`, // 阿里云文件/视频管理 - getPlayAuth: `${uploadURL}oss/manage/getPlayAuth`, // 获取播放凭证 - getPlayAuthNakadai: `nakadai/nakadai/oss/getPlayAuth`, // 获取播放凭证 + getPlayAuth: `nakadai/nakadai/oss/getPlayAuth`, // 获取播放凭证 encrypt: `nakadai/data/encrypt`, platformLogList: `nakadai/nakadai/log/platformLogList`, diff --git a/src/pages/course/details/index.vue b/src/pages/course/details/index.vue index be26e0d..e456d29 100644 --- a/src/pages/course/details/index.vue +++ b/src/pages/course/details/index.vue @@ -261,7 +261,7 @@ export default { if (this.transferType(row.fileType) == '视频') { // 阿里云视频点播 if (row.fileId) { - this.$get(`${this.api.getPlayAuthNakadai}/${row.fileId}`).then(res => { + this.$get(`${this.api.getPlayAuth}/${row.fileId}`).then(res => { this.playAuth = res.playAuth // 如果已经产生了实例,则销毁重新创建,不然播放器会播放上一个视频 if (this.player) { diff --git a/src/pages/station/preview/index.vue b/src/pages/station/preview/index.vue index 5b3dfc4..ba53a11 100644 --- a/src/pages/station/preview/index.vue +++ b/src/pages/station/preview/index.vue @@ -697,7 +697,7 @@ export default { // 阿里云视频点播 if (row.fileId) { this.$get(`${this.api.getPlayAuth}/${row.fileId}`).then(res => { - this.playAuth = res.data.playAuth; + this.playAuth = res.playAuth; // 如果已经产生了实例,则销毁重新创建,不然播放器会播放上一个视频 if (this.player) { this.player.dispose() @@ -826,13 +826,13 @@ export default { }) } else { // python // python只能存在一个打开的窗口 - const opened = +localStorage.getItem('opened') - if (opened) { - Util.errorMsg('Python系统限单页活跃,请切换至当前已有的活跃实验页面。', 5000) - return false - } else { - localStorage.setItem('opened', 1) - } + // const opened = +localStorage.getItem('opened') + // if (opened) { + // Util.errorMsg('Python系统限单页活跃,请切换至当前已有的活跃实验页面。', 5000) + // return false + // } else { + // localStorage.setItem('opened', 1) + // } this.$get(this.api.getTheMostRecentlyRunProject, { cid: this.courseId