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

32 lines
402 B
Vue

<!-- 6.建筑细节 -->
<template>
<view class="content">
<div class="top">
6.建筑细节
</div>
<div class="bottom">
<Menu :type="6" />
</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;
}
.bottom {
flex: 1;
}
</style>