1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
| <script setup>
| const props = defineProps({
| fileList: {
| type: Array,
| default: () => [],
| },
| thumbSize: {
| type: Number,
| default: 72,
| },
| gap: {
| type: Number,
| default: 10,
| },
| })
|
| const normalizedList = computed(() => {
| return (props.fileList || [])
| .filter((item) => item && item.previewURL)
| .map((item, index) => ({
| id: item.id ?? index,
| name: item.originalFilename || `image-${index + 1}`,
| url: item.previewURL,
| }))
| })
| const previewUrls = computed(() => normalizedList.value.map((item) => item.url))
| </script>
|
| <template>
| <div class="attachment-image-preview">
| <div v-if="!normalizedList.length" class="empty">暂无图片</div>
|
| <div v-else class="thumbs" :style="{ gap: `${gap}px` }">
| <el-image
| v-for="(item, index) in normalizedList"
| :key="item.id"
| class="thumb"
| :style="{ width: `${thumbSize}px`, height: `${thumbSize}px` }"
| :src="item.url"
| :preview-src-list="previewUrls"
| :initial-index="index"
| fit="cover"
| preview-teleported
| />
| </div>
| </div>
| </template>
|
| <style scoped lang="scss">
| .attachment-image-preview {
| width: 100%;
| }
|
| .empty {
| height: 120px;
| display: flex;
| align-items: center;
| justify-content: center;
| color: var(--el-text-color-secondary);
| border: 1px dashed var(--el-border-color);
| border-radius: 8px;
| }
|
| .thumbs {
| display: flex;
| flex-wrap: wrap;
| }
|
| .thumb {
| border: 1px solid var(--el-border-color);
| border-radius: 6px;
| overflow: hidden;
| cursor: pointer;
| background: #fff;
| }
| </style>
|
|