Files
hazardousWaste_app/pages/intelligent/index.vue

36 lines
544 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 底部导航栏智能 -->
<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>