<script setup lang="ts">
|
import type { PopoverProperty } from './config';
|
|
import { ref } from 'vue';
|
|
import { IconifyIcon } from '..\..\..\..\..\..\..\..\packages\icons\src';
|
|
import { Image } from 'ant-design-vue';
|
|
/** 弹窗广告 */
|
defineOptions({ name: 'Popover' });
|
|
const props = defineProps<{ property: PopoverProperty }>();
|
|
const activeIndex = ref(0); // 选中 index
|
|
/** 处理选中 */
|
function handleActive(index: number) {
|
activeIndex.value = index;
|
}
|
</script>
|
<template>
|
<div
|
v-for="(item, index) in props.property.list"
|
:key="index"
|
class="absolute bottom-1/2 right-1/2 h-[454px] w-[292px] rounded border border-gray-300 bg-white p-0.5"
|
:style="{
|
zIndex: 100 + index + (activeIndex === index ? 100 : 0),
|
marginRight: `${-146 - index * 20}px`,
|
marginBottom: `${-227 - index * 20}px`,
|
}"
|
@click="handleActive(index)"
|
>
|
<Image
|
:src="item.imgUrl"
|
:preview="false"
|
class="h-full w-full object-contain"
|
>
|
<template #error>
|
<div class="flex h-full w-full items-center justify-center">
|
<IconifyIcon icon="lucide:image" />
|
</div>
|
</template>
|
</Image>
|
<div class="absolute right-1 top-1 text-xs">{{ index + 1 }}</div>
|
</div>
|
</template>
|