32 lines
402 B
Vue
32 lines
402 B
Vue
![]() |
<!-- 4.户型展示 -->
|
||
|
<template>
|
||
|
<view class="content">
|
||
|
<div class="top">
|
||
|
4.户型展示
|
||
|
</div>
|
||
|
<div class="bottom">
|
||
|
<Menu :type="4" />
|
||
|
</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>
|