Commit 5d6f1346 authored by RuoYi's avatar RuoYi

多图上传组件移除多余的api地址

parent f02743bd
...@@ -184,7 +184,7 @@ export default { ...@@ -184,7 +184,7 @@ export default {
let strs = ""; let strs = "";
separator = separator || ","; separator = separator || ",";
for (let i in list) { for (let i in list) {
strs += list[i].url + separator; strs += list[i].url.replace(this.baseUrl, "") + separator;
} }
return strs != '' ? strs.substr(0, strs.length - 1) : ''; return strs != '' ? strs.substr(0, strs.length - 1) : '';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment