dev_202412
yujialong 8 months ago
parent 11b9c6a117
commit 285de23c33
  1. 3
      src/api/index.js
  2. 2
      src/pages/course/details/index.vue
  3. 16
      src/pages/station/preview/index.vue

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

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

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

Loading…
Cancel
Save