2025-08-21 19:39:07 +08:00

37 lines
572 B
Vue

<template>
<div class="general-management">
<div class="content-placeholder">
<h2>综合管理</h2>
<p>综合管理功能正在开发中...</p>
</div>
</div>
</template>
<script setup lang="ts">
// 综合管理逻辑
</script>
<style scoped>
.general-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>