From 3b75798cc41993f9016610296907d2338545a345 Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期五, 16 八月 2024 15:43:01 +0800 Subject: [PATCH] Default Changelist --- src/views/specialWorkSystem/specialIndex/components/workRecord.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/specialWorkSystem/specialIndex/components/workRecord.vue b/src/views/specialWorkSystem/specialIndex/components/workRecord.vue index bfe8a50..25b7d7e 100644 --- a/src/views/specialWorkSystem/specialIndex/components/workRecord.vue +++ b/src/views/specialWorkSystem/specialIndex/components/workRecord.vue @@ -21,10 +21,10 @@ <div>操作内容:{{item.content}}</div> <div>操作意见:{{item.approvalOpinions}}</div> <div v-if="item.fileUrl" style="display: flex;align-items: flex-start">附件内容: - <el-image style="width: 150px; height: 150px;margin-right: 50px;margin-bottom: 20px" :src="item.fileUrl" fit="cover" /> + <el-image v-for="(i,index) in item.fileUrl.split(',')" :key="index" style="width: 150px; height: 150px;margin-right: 50px;margin-bottom: 20px" :src="i" fit="cover" /> </div> <div v-if="item.signUrl" style="display: flex;align-items: flex-start">签字图片: - <el-image style="width: 150px; height: 150px;margin-right: 50px;margin-bottom: 20px" :src="item.signUrl" fit="cover" /> + <el-image v-for="(i,index) in item.signUrl.split(',')" :key="index" style="width: 150px; height: 150px;margin-right: 50px;margin-bottom: 20px" :src="i" fit="cover" /> </div> </div> </div> -- Gitblit v1.9.2