沙钢智慧能源系统前端代码
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
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
<template>
  <div class="tab-bar">
    <div
      class="tab-bar-bg"
      :style="{
        background:
          property.style.bgType === 'color'
            ? property.style.bgColor
            : `url(${property.style.bgImg})`,
        backgroundSize: '100% 100%',
        backgroundRepeat: 'no-repeat'
      }"
    >
      <div v-for="(item, index) in property.items" :key="index" class="tab-bar-item">
        <el-image :src="index === 0 ? item.activeIconUrl : item.iconUrl">
          <template #error>
            <div class="h-full w-full flex items-center justify-center">
              <Icon icon="ep:picture" />
            </div>
          </template>
        </el-image>
        <span :style="{ color: index === 0 ? property.style.activeColor : property.style.color }">
          {{ item.text }}
        </span>
      </div>
    </div>
  </div>
</template>
<script setup lang="ts">
import { TabBarProperty } from './config'
 
/** 页面底部导航栏 */
defineOptions({ name: 'TabBar' })
 
defineProps<{ property: TabBarProperty }>()
</script>
<style lang="scss" scoped>
.tab-bar {
  z-index: 2;
  width: 100%;
 
  .tab-bar-bg {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0;
 
    .tab-bar-item {
      display: flex;
      width: 100%;
      font-size: 12px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
 
      :deep(img),
      .el-icon {
        width: 26px;
        height: 26px;
        border-radius: 4px;
      }
    }
  }
}
</style>