diff --git a/src/components/FileUpload/index.vue b/src/components/FileUpload/index.vue index 38f802b..68967d7 100644 --- a/src/components/FileUpload/index.vue +++ b/src/components/FileUpload/index.vue @@ -170,7 +170,9 @@ function listToString(list, separator) { let strs = ""; separator = separator || ","; for (let i in list) { - strs += list[i].url + separator; + if(undefined !== list[i].url) { + strs += list[i].url + separator; + } } return strs != '' ? strs.substr(0, strs.length - 1) : ''; } diff --git a/src/components/ImageUpload/index.vue b/src/components/ImageUpload/index.vue index 01d9392..a4e4b03 100644 --- a/src/components/ImageUpload/index.vue +++ b/src/components/ImageUpload/index.vue @@ -109,11 +109,7 @@ watch(() => props.modelValue, val => { // 删除图片 function handleRemove(file, files) { - const findex = fileList.value.map(f => f.name).indexOf(file.name); - if (findex > -1) { - fileList.value.splice(findex, 1); - emit("update:modelValue", listToString(fileList.value)); - } + emit("update:modelValue", listToString(fileList.value)); } // 上传成功回调 @@ -183,24 +179,10 @@ function listToString(list, separator) { let strs = ""; separator = separator || ","; for (let i in list) { - strs += list[i].url.replace(baseUrl, "") + separator; + if (undefined !== list[i].url && list[i].url.indexOf("blob:") !== 0) { + strs += list[i].url.replace(baseUrl, "") + separator; + } } return strs != "" ? strs.substr(0, strs.length - 1) : ""; } - - \ No newline at end of file