Files
graduation-design-wr/src/views/Report.vue

25 lines
354 B
Vue
Raw Normal View History

2026-02-06 20:19:09 +08:00
<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>