图片上传组件

This commit is contained in:
13713575202 2025-04-16 17:14:12 +08:00
parent 2d5b692ad5
commit ffe76eabb0

View File

@ -111,7 +111,8 @@ export default {
this.fileList = list.map((item) => {
if (typeof item === 'string') {
if (item.indexOf(this.baseUrl) === -1) {
item = { name: this.baseUrl + item, url: this.baseUrl + item };
// item = { name: this.baseUrl + item, url: this.baseUrl + item };
item = { name: this.baseUrl + item, url: item };
} else {
item = { name: item, url: item };
}