vehicle-monitor/src/views/smart-park/components/smart-park-footer/index.vue

48 lines
924 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-03-05 13:57:51 +08:00
<ul class="smart-park__footer-nav">
<li v-for="index in new Array(5)" :key="index" class="smart-park__footer-item">
2025-05-11 23:02:12 +08:00
<img alt="车辆管理" src="@/views/smart-park/images/car/car-39.png" />
2025-03-01 20:52:06 +08:00
<span class="text-white hover">车辆管理</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-03-05 13:57:51 +08:00
.smart-park__footer-nav {
display: flex;
justify-content: space-around;
align-items: center;
2025-02-27 13:41:42 +08:00
2025-03-05 13:57:51 +08:00
li {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 138px;
height: 125px;
background: rgba(16, 11, 87, 0.55);
border-radius: 10px;
img {
width: 67px;
height: 67px;
}
2025-02-27 13:41:42 +08:00
2025-03-05 13:57:51 +08:00
span {
font-size: 15px;
font-weight: lighter;
}
2025-02-27 13:41:42 +08:00
}
2025-02-25 23:14:50 +08:00
}
</style>