vehicle-monitor/src/layout/components/Footer/index.vue

37 lines
646 B
Vue
Raw Normal View History

2025-02-25 23:14:50 +08:00
<script lang="ts" setup></script>
<template>
2025-02-27 13:41:42 +08:00
<footer>
2025-02-25 23:14:50 +08:00
<ul class="flex-x-around">
2025-02-27 13:41:42 +08:00
<li v-for="index in new Array(5)" :key="index" class="rectangle flex-y-center">
2025-02-26 16:31:59 +08:00
<img alt="车辆管理" src="@/assets/images/layout/footer-39.png" />
2025-02-27 13:41:42 +08:00
<span class="text-white">车辆管理</span>
2025-02-25 23:14:50 +08:00
</li>
</ul>
</footer>
</template>
<style lang="scss" scoped>
2025-02-27 13:41:42 +08:00
footer {
margin: 66px auto auto auto;
width: 772px;
height: 125px;
}
2025-02-25 23:14:50 +08:00
.rectangle {
2025-02-27 13:41:42 +08:00
width: 138px;
height: 125px;
background: #0e094d55;
2025-02-25 23:14:50 +08:00
img {
width: 67px;
height: 67px;
}
2025-02-27 13:41:42 +08:00
span {
font-size: 15px;
font-weight: lighter;
}
2025-02-25 23:14:50 +08:00
}
</style>