| 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{
- position: relative;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: space-around;
- align-items: center;
- .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;
- left: 50%;
- top: 8px;
- transform: translate(-50%,0);
- color: #fff;
- }
- }
- }
- </style>
|