yglt-uniapp/pages/RouteNavigation/RouteNavigation.vue
2025-01-14 19:51:31 +08:00

32 lines
441 B
Vue

<!-- 5.动线漫游 -->
<template>
<view class="content">
<div class="top">
5.动线漫游
</div>
<div class="bottom">
<Menu :type="5" />
</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;
background-color: rgba(44 61, 43, 1);
}
</style>