fix:修复视频无法播放的问题

This commit is contained in:
2026-04-07 22:49:07 +08:00
parent 08999c608d
commit f8a605b8c0
4 changed files with 6 additions and 6 deletions

View File

@@ -129,7 +129,6 @@ import { ElMessage, ElMessageBox, FormRules, UploadProps, UploadRawFile, UploadR
import { journalRules } from '@/utils/element/elRules.ts'
import { onMounted, reactive, ref } from 'vue'
import { commonElMessageBox } from 'vue3-common/utils/elUtil'
import { AListUrl } from '@/utils'
import { SvgIcon } from 'vue3-common'
import { acceptImageTypes, acceptVideoTypes } from '@/utils/file.ts'
import { beforeUploadImage, beforeUploadVideo, httpRequestFile } from '@/utils/element/elUpload.ts'
@@ -164,7 +163,7 @@ const initFileList = () => {
if (videoUrl) {
videoFileList.value.push({
name: 'video',
url: `${AListUrl}${videoUrl}`
url: videoUrl
})
}
}