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