12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <div class="systemJc">
- <div class="systemJc-box" v-for="(item, index) in systemJcList" :key="index">
- <div class="system-label">{{ item.label }}</div>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { ref, reactive } from 'vue';
- let systemJcList = reactive([{ label: '智能灌浆系统' }, { label: '智能注氮系统' }]);
- </script>
- <style lang="less" scoped>
- .systemJc {
- display: flex;
- position: relative;
- align-items: center;
- justify-content: space-around;
- width: 100%;
- height: 100%;
- .systemJc-box {
- position: relative;
- width: 222px;
- height: 100%;
- background: url('../../../../../assets/images/fire/firehome/zu-14578.png') no-repeat center;
- background-size: 100% 100%;
- .system-label {
- position: absolute;
- top: 8px;
- left: 50%;
- transform: translate(-50%, 0);
- color: #fff;
- }
- }
- }
- </style>
|