From 86f145fb538f5573cde791a41965ef8bb6cad975 Mon Sep 17 00:00:00 2001 From: WL Date: Tue, 25 Jun 2024 15:56:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=EF=BC=9A1.#16379=20?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E8=A7=86=E9=A2=91=E5=A4=84=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=EF=BC=8CaudioOrVideo=E5=89=8D=E5=8A=A0?= =?UTF-8?q?=E2=80=9C/=E2=80=9D=202.=E5=AE=89=E5=85=A8=E7=94=9F=E4=BA=A7?= =?UTF-8?q?=E8=B4=A3=E4=BB=BB=E5=88=B6=E5=A2=9E=E5=8A=A0=E5=AF=BC=E5=87=BA?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/studyResource/curriculum/components/completeVideo.vue | 2 +- src/views/studyResource/videocourseware/components/complete.vue | 2 +- src/views/studyResource/videocourseware/components/edit.vue | 2 +- src/views/studyResource/videocourseware/components/info.vue | 2 +- src/views/studyResource/videocourseware/components/list.vue | 2 +- .../safetyProductionResponsibilitySystem/components/list.vue | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/studyResource/curriculum/components/completeVideo.vue b/src/views/studyResource/curriculum/components/completeVideo.vue index a394f0d..9c1b393 100644 --- a/src/views/studyResource/curriculum/components/completeVideo.vue +++ b/src/views/studyResource/curriculum/components/completeVideo.vue @@ -941,7 +941,7 @@ export default { // 如果 uploadInfo.videoId 存在, 调用 刷新视频上传凭证接口(https://help.aliyun.com/document_detail/55408.html) // 如果 uploadInfo.videoId 不存在,调用 获取视频上传地址和凭证接口(https://help.aliyun.com/document_detail/55407.html) if (!uploadInfo.videoId) { - const createUrl = config.httpurl + 'audioOrVideo/createUploadVideo?Title=' + uploadInfo.file.name + '&FileName=' + uploadInfo.file.name + const createUrl = config.httpurl + '/audioOrVideo/createUploadVideo?Title=' + uploadInfo.file.name + '&FileName=' + uploadInfo.file.name axios.get(createUrl).then(({ data }) => { const uploadAuth = data.body.uploadAuth const uploadAddress = data.body.uploadAddress diff --git a/src/views/studyResource/videocourseware/components/complete.vue b/src/views/studyResource/videocourseware/components/complete.vue index d464f66..0912ec7 100644 --- a/src/views/studyResource/videocourseware/components/complete.vue +++ b/src/views/studyResource/videocourseware/components/complete.vue @@ -988,7 +988,7 @@ export default { // 如果 uploadInfo.videoId 存在, 调用 刷新视频上传凭证接口(https://help.aliyun.com/document_detail/55408.html) // 如果 uploadInfo.videoId 不存在,调用 获取视频上传地址和凭证接口(https://help.aliyun.com/document_detail/55407.html) if (!uploadInfo.videoId) { - const createUrl = config.httpurl + 'audioOrVideo/createUploadVideo?Title=' + uploadInfo.file.name + '&FileName=' + uploadInfo.file.name + const createUrl = config.httpurl + '/audioOrVideo/createUploadVideo?Title=' + uploadInfo.file.name + '&FileName=' + uploadInfo.file.name axios.get(createUrl).then(({ data }) => { const uploadAuth = data.body.uploadAuth const uploadAddress = data.body.uploadAddress diff --git a/src/views/studyResource/videocourseware/components/edit.vue b/src/views/studyResource/videocourseware/components/edit.vue index 1b6e8b6..acbe303 100644 --- a/src/views/studyResource/videocourseware/components/edit.vue +++ b/src/views/studyResource/videocourseware/components/edit.vue @@ -951,7 +951,7 @@ export default { // 如果 uploadInfo.videoId 存在, 调用 刷新视频上传凭证接口(https://help.aliyun.com/document_detail/55408.html) // 如果 uploadInfo.videoId 不存在,调用 获取视频上传地址和凭证接口(https://help.aliyun.com/document_detail/55407.html) if (!uploadInfo.videoId) { - const createUrl = config.httpurl + 'audioOrVideo/createUploadVideo?Title=' + uploadInfo.file.name + '&FileName=' + uploadInfo.file.name + const createUrl = config.httpurl + '/audioOrVideo/createUploadVideo?Title=' + uploadInfo.file.name + '&FileName=' + uploadInfo.file.name axios.get(createUrl).then(({ data }) => { const uploadAuth = data.body.uploadAuth const uploadAddress = data.body.uploadAddress diff --git a/src/views/studyResource/videocourseware/components/info.vue b/src/views/studyResource/videocourseware/components/info.vue index 637f387..d6f85d1 100644 --- a/src/views/studyResource/videocourseware/components/info.vue +++ b/src/views/studyResource/videocourseware/components/info.vue @@ -1000,7 +1000,7 @@ export default { // 如果 uploadInfo.videoId 存在, 调用 刷新视频上传凭证接口(https://help.aliyun.com/document_detail/55408.html) // 如果 uploadInfo.videoId 不存在,调用 获取视频上传地址和凭证接口(https://help.aliyun.com/document_detail/55407.html) if (!uploadInfo.videoId) { - const createUrl = config.httpurl + 'audioOrVideo/createUploadVideo?Title=' + uploadInfo.file.name + '&FileName=' + uploadInfo.file.name + const createUrl = config.httpurl + '/audioOrVideo/createUploadVideo?Title=' + uploadInfo.file.name + '&FileName=' + uploadInfo.file.name axios.get(createUrl).then(({ data }) => { const uploadAuth = data.body.uploadAuth const uploadAddress = data.body.uploadAddress diff --git a/src/views/studyResource/videocourseware/components/list.vue b/src/views/studyResource/videocourseware/components/list.vue index b7c392e..3c21191 100644 --- a/src/views/studyResource/videocourseware/components/list.vue +++ b/src/views/studyResource/videocourseware/components/list.vue @@ -1285,7 +1285,7 @@ export default { // 如果 uploadInfo.videoId 存在, 调用 刷新视频上传凭证接口(https://help.aliyun.com/document_detail/55408.html) // 如果 uploadInfo.videoId 不存在,调用 获取视频上传地址和凭证接口(https://help.aliyun.com/document_detail/55407.html) if (!uploadInfo.videoId) { - const createUrl = config.httpurl + 'audioOrVideo/createUploadVideo?Title=' + uploadInfo.file.name + '&FileName=' + uploadInfo.file.name + const createUrl = config.httpurl + '/audioOrVideo/createUploadVideo?Title=' + uploadInfo.file.name + '&FileName=' + uploadInfo.file.name axios.get(createUrl).then(({ data }) => { const uploadAuth = data.body.uploadAuth const uploadAddress = data.body.uploadAddress diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue index 0cb7f56..e2fe0d3 100644 --- a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue @@ -163,7 +163,7 @@ - + 导出