|
|
@@ -65,7 +65,7 @@
|
|
|
const fileList = computed(() => {
|
|
|
const images = detailPictures.value.map((url) => ({ type: 'image', url }));
|
|
|
const videos = detailVideos.value.map((url) => ({ type: 'video', url, poster: ref('') }));
|
|
|
- return [...videos, ...images];
|
|
|
+ return [...images, ...videos];
|
|
|
});
|
|
|
|
|
|
const thumbsSwiper = ref(null);
|