Browse Source

修复文件地址错误

master
马远东 1 year ago
parent
commit
18d24267f8
  1. 21
      src/views/edutraining/courseinfo.vue
  2. 8
      vue.config.js

21
src/views/edutraining/courseinfo.vue

@ -1,5 +1,4 @@
<template> <template>
<basic-container> <basic-container>
<avue-crud <avue-crud
:option="option" :option="option"
@ -257,7 +256,6 @@ export default {
const totalChunks = Math.ceil(file.size / CHUNK_SIZE); // const totalChunks = Math.ceil(file.size / CHUNK_SIZE); //
let uploadedChunks = 0; // let uploadedChunks = 0; //
const overallStartTime = performance.now(); // const overallStartTime = performance.now(); //
for (let index = 0; index < totalChunks; index++) { for (let index = 0; index < totalChunks; index++) {
const start = index * CHUNK_SIZE; const start = index * CHUNK_SIZE;
@ -300,7 +298,6 @@ export default {
// //
if (index === totalChunks - 1) { if (index === totalChunks - 1) {
const fileData = { const fileData = {
fileName: file.name, fileName: file.name,
totalChunks: totalChunks, totalChunks: totalChunks,
@ -317,17 +314,24 @@ export default {
if (Stresponse.data.code === 200) { if (Stresponse.data.code === 200) {
const overallEndTime = performance.now(); // const overallEndTime = performance.now(); //
const totalFunctionTime = (overallEndTime - overallStartTime) / 1000; // const totalFunctionTime =
(overallEndTime - overallStartTime) / 1000; //
column.tip = ``; column.tip = ``;
console.log(Stresponse.data, "合并请求成功"); console.log(Stresponse.data, "合并请求成功");
_this.form.videoUrl = let url=(Stresponse.data.data.domain + '/'+ Stresponse.data.data.name)
Stresponse.data.data.domain + Stresponse.data.data.path; // console.log(url,'地址');
_this.form.videoUrl = url; //
console.log(_this.form.videoUrl, "参数");
loading(); loading();
this.$message.success( this.$message.success(
`上传成功:文件名:${file.name},文件大小${( `上传成功:文件名:${file.name},文件大小${(
file.size / file.size /
(1024 * 1024) (1024 * 1024)
).toFixed(2)} MB, 上传进度: ${progressPercentage}%,总耗时:${totalFunctionTime.toFixed(2)}` ).toFixed(
2
)} MB, 上传进度: ${progressPercentage}%,总耗时:${totalFunctionTime.toFixed(
2
)}`
); );
} else { } else {
loading(); loading();
@ -473,5 +477,4 @@ export default {
}; };
</script> </script>
<style> <style></style>
</style>

8
vue.config.js

@ -27,8 +27,8 @@ module.exports = {
'/api': { '/api': {
// 本地服务接口地址 // 本地服务接口地址
// target: 'http://nps.scqtkj.com:51490/', // target: 'http://nps.scqtkj.com:51490/',
target: 'http://127.0.0.1:8081/', // target: 'http://127.0.0.1:8081/',
// target: 'http://192.168.3.2:8081/', target: 'http://192.168.3.2:8081/',
//target: 'http://10.10.10.11:8088/', //target: 'http://10.10.10.11:8088/',
//远程演示服务地址,可用于直接启动项目 //远程演示服务地址,可用于直接启动项目
//target: 'https://saber.bladex.vip/api', //target: 'https://saber.bladex.vip/api',
@ -39,8 +39,8 @@ module.exports = {
}, },
'/': { '/': {
// 本地服务接口地址 // 本地服务接口地址
target: 'http://127.0.0.1:8088/', // target: 'http://127.0.0.1:8088/',
// target: 'http://192.168.3.2:8081/', target: 'http://192.168.3.2:8081/',
//target: 'http://10.10.10.11:8088/', //target: 'http://10.10.10.11:8088/',
//远程演示服务地址,可用于直接启动项目 //远程演示服务地址,可用于直接启动项目
//target: 'https://saber.bladex.vip/api', //target: 'https://saber.bladex.vip/api',

Loading…
Cancel
Save