25 lines
354 B
Vue
25 lines
354 B
Vue
|
|
<template>
|
||
|
|
<div class="page">
|
||
|
|
<h2>报告中心</h2>
|
||
|
|
<p>在这里管理、查看和导出各类报告。</p>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts"></script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.page h2 {
|
||
|
|
margin-top: 0;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
font-size: 18px;
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
|
||
|
|
.page p {
|
||
|
|
margin: 0;
|
||
|
|
color: #4b5563;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
|