OL-LearnPlatform-Frontend/src/views/teacher/course/StatisticsManagement.vue
2025-08-21 19:39:07 +08:00

37 lines
578 B
Vue

<template>
<div class="statistics-management">
<div class="content-placeholder">
<h2>统计管理</h2>
<p>统计管理功能正在开发中...</p>
</div>
</div>
</template>
<script setup lang="ts">
// 统计管理逻辑
</script>
<style scoped>
.statistics-management {
padding: 20px;
background: #fff;
height: 100%;
}
.content-placeholder {
text-align: center;
padding: 60px 20px;
}
.content-placeholder h2 {
font-size: 24px;
color: #333;
margin-bottom: 20px;
}
.content-placeholder p {
font-size: 16px;
color: #666;
}
</style>