From 99dfd42372117b32d14769bbf10db5a724de9ca3 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期二, 10 五月 2022 23:35:54 +0800 Subject: [PATCH] update 优化 上传组件 部分用户存储url串 导致无法回显问题 --- ruoyi-ui/src/components/FileUpload/index.vue | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ruoyi-ui/src/components/FileUpload/index.vue b/ruoyi-ui/src/components/FileUpload/index.vue index 78baf48..f41a712 100644 --- a/ruoyi-ui/src/components/FileUpload/index.vue +++ b/ruoyi-ui/src/components/FileUpload/index.vue @@ -90,7 +90,12 @@ const list = Array.isArray(val) ? val : this.value.split(','); // 鐒跺悗灏嗘暟缁勮浆涓哄璞℃暟缁� this.fileList = list.map(item => { - item = { name: item.name, url: item.url, ossId: item.ossId }; + // 瀛楃涓插洖鏄惧鐞� 濡傛灉姝ゅ瀛樼殑鏄痷rl鍙洿鎺ュ洖鏄� 濡傛灉瀛樼殑鏄痠d闇�瑕佽皟鐢ㄦ帴鍙f煡鍑烘潵 + if (typeof item === "string") { + item = { name: item, url: item }; + } else { + item = { name: item.name, url: item.url, ossId: item.ossId }; + } item.uid = item.uid || new Date().getTime() + temp++; return item; }); -- Gitblit v1.9.3