diff --git a/src/views/projectFront/safeSame/rectificationRecord.vue b/src/views/projectFront/safeSame/rectificationRecord.vue index 5b66e41c..d2188a7b 100644 --- a/src/views/projectFront/safeSame/rectificationRecord.vue +++ b/src/views/projectFront/safeSame/rectificationRecord.vue @@ -3123,7 +3123,7 @@ export default { return dataList .map((item) => { let imgArr = item.split("*"); - let obj = { name: imgArr[0], url: imgArr[1] }; + let obj = { name: imgArr[0], url: imgArr[1].includes("http") ? imgArr[1] : `${this.fileUrl}${imgArr[1]}` }; return obj; }) .filter((item) => {