diff --git a/ruoyi-ui/src/components/ImageUpload/index.vue b/ruoyi-ui/src/components/ImageUpload/index.vue
index 978576f8f..72d55a5c4 100644
--- a/ruoyi-ui/src/components/ImageUpload/index.vue
+++ b/ruoyi-ui/src/components/ImageUpload/index.vue
@@ -18,7 +18,7 @@
>
-
+
请上传
@@ -124,7 +124,7 @@ export default {
},
// 上传成功回调
handleUploadSuccess(res) {
- this.fileList.push({ name: res.fileName, url: res.fileName });
+ this.fileList.push({ name: this.baseUrl + res.fileName, url: this.baseUrl + res.fileName });
this.$emit("input", this.listToString(this.fileList));
this.loading.close();
},