|
@@ -40,6 +40,7 @@
|
|
|
v-if="isDetailDialogShow"
|
|
v-if="isDetailDialogShow"
|
|
|
:description="detailDescription"
|
|
:description="detailDescription"
|
|
|
:image-paths="detailPictures"
|
|
:image-paths="detailPictures"
|
|
|
|
|
+ :video-paths="detailVideos"
|
|
|
@close="closeDetailDialog"
|
|
@close="closeDetailDialog"
|
|
|
/>
|
|
/>
|
|
|
</div>
|
|
</div>
|
|
@@ -69,6 +70,7 @@
|
|
|
const isDetailDialogShow = ref(false);
|
|
const isDetailDialogShow = ref(false);
|
|
|
const detailDescription = ref('');
|
|
const detailDescription = ref('');
|
|
|
const detailPictures = ref<string[]>([]);
|
|
const detailPictures = ref<string[]>([]);
|
|
|
|
|
+ const detailVideos = ref<string[]>([]);
|
|
|
// 分页
|
|
// 分页
|
|
|
const total = ref(0);
|
|
const total = ref(0);
|
|
|
|
|
|
|
@@ -142,6 +144,7 @@
|
|
|
isDetailDialogShow.value = true;
|
|
isDetailDialogShow.value = true;
|
|
|
detailDescription.value = row.description;
|
|
detailDescription.value = row.description;
|
|
|
detailPictures.value = row.pictures;
|
|
detailPictures.value = row.pictures;
|
|
|
|
|
+ detailVideos.value = row.videos;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
// 删除
|
|
// 删除
|