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

32 lines
441 B
Vue

<!-- 7.科技系统 -->
<template>
<view class="content">
<div class="top">
7.科技系统
</div>
<div class="bottom">
<Menu :type="7" />
</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>