From 7c23d914bcce65cfa3450b119d3ffcf0556c6145 Mon Sep 17 00:00:00 2001 From: liukangdong <898885815@qq.com> Date: 星期一, 23 十二月 2024 14:09:18 +0800 Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/funingyunwei --- admin/src/views/Inspection/components/taskDetail.vue | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/admin/src/views/Inspection/components/taskDetail.vue b/admin/src/views/Inspection/components/taskDetail.vue index 43adcf6..a357861 100644 --- a/admin/src/views/Inspection/components/taskDetail.vue +++ b/admin/src/views/Inspection/components/taskDetail.vue @@ -11,7 +11,7 @@ </el-table-column> <el-table-column prop="realname" label="宸℃浜�" min-width="100" show-overflow-tooltip /> <el-table-column prop="editDate" label="宸℃鏃堕棿" min-width="100" show-overflow-tooltip /> - <el-table-column prop="" label="宸℃缁撴灉" min-width="100" show-overflow-tooltip> + <el-table-column prop="files" label="宸℃缁撴灉" min-width="100" show-overflow-tooltip > <template v-slot="{ row }"> <span class="gray" v-if="row.dealStatus == 0">姝e父</span> <span class="red" v-if="row.dealStatus == 1">寮傚父</span> @@ -19,7 +19,15 @@ </el-table-column> <el-table-column prop="" label="宸℃闄勪欢" min-width="100" show-overflow-tooltip> <template v-slot="{ row }"> - + <div class="value" v-if="row.multifileList != null && row.multifileList.length"> + <div v-for="item in row.multifileList" :key="item.id" style="display: inline;margin-right: 20px"> + <video v-if="item.fileurlFull && item.fileurlFull.endsWith('.mp4')" ref="videoRef" controls preload="auto" + style="width: 60px;height: 60px;object-fit: contain;" :src="item.fileurlFull" /> + <el-image v-else-if="item.fileurlFull" style="width:60px; height: 60px" :src="item.fileurlFull" + :preview-src-list="[item.fileurlFull]"> + </el-image> + </div> + </div> </template> </el-table-column> <el-table-column prop="dealInfo" label="宸℃璇存槑" min-width="100" show-overflow-tooltip /> -- Gitblit v1.9.3