图片上传组件,上传成功后路径没有拼接baseUrl,导致上传图片后无法预览访问

This commit is contained in:
哦是吗 2022-03-13 16:17:34 +00:00 committed by Gitee
parent 62fc38078c
commit 47d296ffa0
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -127,7 +127,7 @@ export default {
},
//
handleUploadSuccess(res) {
this.uploadList.push({ name: res.fileName, url: res.fileName });
this.uploadList.push({ name: res.fileName, url: this.baseUrl + res.fileName });
if (this.uploadList.length === this.number) {
this.fileList = this.fileList.concat(this.uploadList);
this.uploadList = [];