yglt-uniapp/pages/LocationAmenities/LocationAmenities.vue
2025-01-13 19:42:02 +08:00

33 lines
517 B
Vue

<!-- 2.区位配套 -->
<template>
<view class="content">
<div class="top">
</div>
<div class="bottom">
<Menu :type="2" />
</div>
</view>
</template>
<script setup>
import Menu from '../../components/Menu.vue'
</script>
<style scoped>
.content {
display: flex;
flex-direction: column;
height: 100%;
}
.top {
flex: 12;
background: url('~@/static/locationamenities.jpg') no-repeat;
background-size: 100% 100%;
}
.bottom {
flex: 1;
background-color: rgba(44 61, 43, 1);
}
</style>