沙钢智慧能源系统前端代码
houzhongjian
2024-10-09 314507f8ddadd9c66e98d260c3b2a5dad1a04015
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
<template>
  <div
    v-for="(item, index) in property.list"
    :key="index"
    class="absolute bottom-50% right-50% h-454px w-292px border-1px border-gray border-rounded-4px border-solid bg-white p-1px"
    :style="{
      zIndex: 100 + index + (activeIndex === index ? 100 : 0),
      marginRight: `${-146 - index * 20}px`,
      marginBottom: `${-227 - index * 20}px`
    }"
    @click="handleActive(index)"
  >
    <el-image :src="item.imgUrl" fit="contain" class="h-full w-full">
      <template #error>
        <div class="h-full w-full flex items-center justify-center">
          <Icon icon="ep:picture" />
        </div>
      </template>
    </el-image>
    <div class="absolute right-1 top-1 text-12px">{{ index + 1 }}</div>
  </div>
</template>
<script setup lang="ts">
import { PopoverProperty } from './config'
 
/** 弹窗广告 */
defineOptions({ name: 'Popover' })
// 定义属性
defineProps<{ property: PopoverProperty }>()
 
// 处理选中
const activeIndex = ref(0)
const handleActive = (index: number) => {
  activeIndex.value = index
}
</script>
 
<style scoped lang="scss"></style>