|
|
|
@ -65,10 +65,11 @@
|
|
|
|
|
name: 'JUpload', |
|
|
|
|
data(){ |
|
|
|
|
return { |
|
|
|
|
uploadAction:window._CONFIG['domianURL']+"/sys/upload/uploadMinio", |
|
|
|
|
uploadAction:window._CONFIG['domianURL']+"/sys/upload", |
|
|
|
|
headers:{}, |
|
|
|
|
fileList: [], |
|
|
|
|
newFileList: [], |
|
|
|
|
result: '', |
|
|
|
|
uploadGoOn:true, |
|
|
|
|
previewVisible: false, |
|
|
|
|
//---------------------------- begin 图片左右换位置 ------------------------------------- |
|
|
|
@ -101,7 +102,7 @@
|
|
|
|
|
default:"temp" |
|
|
|
|
}, |
|
|
|
|
value:{ |
|
|
|
|
type:[String,Array], |
|
|
|
|
type:[Object, Array, String, Number], |
|
|
|
|
required:false |
|
|
|
|
}, |
|
|
|
|
// update-begin- --- author:wangshuai ------ date:20190929 ---- for:Jupload组件增加是否能够点击 |
|
|
|
@ -145,7 +146,8 @@
|
|
|
|
|
let val = this.value |
|
|
|
|
if (val instanceof Array) { |
|
|
|
|
if(this.returnUrl){ |
|
|
|
|
this.initFileList(val.join(',')) |
|
|
|
|
this.initFileListArr(val); |
|
|
|
|
// this.initFileList(val.join(',')) |
|
|
|
|
}else{ |
|
|
|
|
this.initFileListArr(val); |
|
|
|
|
} |
|
|
|
@ -172,26 +174,33 @@
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
methods:{ |
|
|
|
|
initFileListArr(val){ |
|
|
|
|
if(!val || val.length==0){ |
|
|
|
|
this.fileList = []; |
|
|
|
|
return; |
|
|
|
|
initFileListArr(val) { |
|
|
|
|
console.log('999999',val) |
|
|
|
|
if (!val || val.length == 0) { |
|
|
|
|
this.fileList = [] |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
let fileList = []; |
|
|
|
|
for(var a=0;a<val.length;a++){ |
|
|
|
|
let url = getFileAccessHttpUrl(val[a].filePath); |
|
|
|
|
let fileList = [] |
|
|
|
|
for (var a = 0; a < val.length; a++) { |
|
|
|
|
fileList.push({ |
|
|
|
|
uid:uidGenerator(), |
|
|
|
|
name:val[a].fileName, |
|
|
|
|
uid: uidGenerator(), |
|
|
|
|
name: val[a].name, |
|
|
|
|
id: val[a].id, |
|
|
|
|
status: 'done', |
|
|
|
|
url: url, |
|
|
|
|
response:{ |
|
|
|
|
status:"history", |
|
|
|
|
message:val[a].filePath |
|
|
|
|
url: val[a].url, |
|
|
|
|
response: { |
|
|
|
|
result: { |
|
|
|
|
uid: uidGenerator(), |
|
|
|
|
name: val[a].name, |
|
|
|
|
id: val[a].id, |
|
|
|
|
status: 'done', |
|
|
|
|
url: val[a].url |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
this.fileList = fileList |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
initFileList(paths){ |
|
|
|
|
if(!paths || paths.length==0){ |
|
|
|
@ -254,11 +263,12 @@
|
|
|
|
|
return true |
|
|
|
|
}, |
|
|
|
|
handleChange(info) { |
|
|
|
|
console.log("--文件列表改变--") |
|
|
|
|
console.log("--文件列表改变--",info) |
|
|
|
|
if(!info.file.status && this.uploadGoOn === false){ |
|
|
|
|
info.fileList.pop(); |
|
|
|
|
} |
|
|
|
|
let fileList = info.fileList |
|
|
|
|
let fileList = info |
|
|
|
|
|
|
|
|
|
if(info.file.status==='done'){ |
|
|
|
|
if(this.number>0){ |
|
|
|
|
fileList = fileList.slice(-this.number); |
|
|
|
@ -266,8 +276,13 @@
|
|
|
|
|
if(info.file.response.success){ |
|
|
|
|
fileList = fileList.map((file) => { |
|
|
|
|
if (file.response) { |
|
|
|
|
let reUrl = file.response.message; |
|
|
|
|
file.url = getFileAccessHttpUrl(reUrl); |
|
|
|
|
let reUrl |
|
|
|
|
if (file.response.message == '') { |
|
|
|
|
reUrl = file.response.result.url |
|
|
|
|
} else { |
|
|
|
|
reUrl = file.response.message |
|
|
|
|
} |
|
|
|
|
file.url = getFileAccessHttpUrl(reUrl) |
|
|
|
|
} |
|
|
|
|
return file; |
|
|
|
|
}); |
|
|
|
@ -280,28 +295,25 @@
|
|
|
|
|
} |
|
|
|
|
this.fileList = fileList |
|
|
|
|
if(info.file.status==='done' || info.file.status === 'removed'){ |
|
|
|
|
//returnUrl为true时仅返回文件路径 |
|
|
|
|
if(this.returnUrl){ |
|
|
|
|
this.handlePathChange() |
|
|
|
|
}else{ |
|
|
|
|
//returnUrl为false时返回文件名称、文件路径及文件大小 |
|
|
|
|
this.newFileList = []; |
|
|
|
|
for(var a=0;a<fileList.length;a++){ |
|
|
|
|
// update-begin-author:lvdandan date:20200603 for:【TESTA-514】【开源issue】多个文件同时上传时,控制台报错 |
|
|
|
|
if(fileList[a].status === 'done' ) { |
|
|
|
|
var fileJson = { |
|
|
|
|
fileName:fileList[a].name, |
|
|
|
|
filePath:fileList[a].response.message, |
|
|
|
|
fileSize:fileList[a].size |
|
|
|
|
}; |
|
|
|
|
this.newFileList.push(fileJson); |
|
|
|
|
}else{ |
|
|
|
|
return; |
|
|
|
|
this.newFileList = [] |
|
|
|
|
for (var a = 0; a < fileList.length; a++) { |
|
|
|
|
if (fileList[a].status === 'done') { |
|
|
|
|
|
|
|
|
|
var fileJson = { |
|
|
|
|
fileName: fileList[a].response.result.fileName, |
|
|
|
|
url: fileList[a].response.result.url, |
|
|
|
|
size: fileList[a].response.result.size, |
|
|
|
|
id: fileList[a].response.result.id, |
|
|
|
|
fileType: fileList[a].type |
|
|
|
|
} |
|
|
|
|
// update-end-author:lvdandan date:20200603 for:【TESTA-514】【开源issue】多个文件同时上传时,控制台报错 |
|
|
|
|
this.newFileList.push(fileJson) |
|
|
|
|
} else { |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.$emit('change', this.newFileList); |
|
|
|
|
} |
|
|
|
|
console.log('2222222222222',this.newFileList) |
|
|
|
|
this.initFileListArr(this.newFileList) |
|
|
|
|
this.$emit('change', this.newFileList) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
handleDelete(file){ |
|
|
|
|