36 lines
544 B
Vue
36 lines
544 B
Vue
<!-- 底部导航栏:智能 -->
|
||
<template>
|
||
<navigation title="智能"/>
|
||
<view class="contentBox">
|
||
<ProjectOverView />
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
import ProjectOverView from '../components/ProjectOverView.vue'
|
||
import Navigation from '../components/Navigation.vue';
|
||
|
||
</script>
|
||
|
||
<style>
|
||
|
||
.logo {
|
||
height: 200rpx;
|
||
width: 200rpx;
|
||
margin-top: 200rpx;
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
margin-bottom: 50rpx;
|
||
}
|
||
|
||
.text-area {
|
||
display: flex;
|
||
justify-content: center;
|
||
}
|
||
|
||
.title {
|
||
font-size: 36rpx;
|
||
color: #8f8f94;
|
||
}
|
||
</style>
|