refactor(layout): 优化 AdminLayout 页面布局和滚动功能

- 在 el-main 组件中添加 scroll-wrapper 类,实现内容区域的滚动功能
- 调整 admin-main 和 scroll-wrapper 的样式,确保滚动效果正常
- 修改 CommentDTO、PlaylistDTO 和 PlaylistServiceImpl 中的歌单类型相关字段和方法
This commit is contained in:
ikmkj
2025-07-26 22:56:10 +08:00
parent a1e5294fdd
commit b1d795337c
4 changed files with 29 additions and 8 deletions

View File

@@ -183,7 +183,9 @@ const menuItems = [
<!-- 内容区域 -->
<el-main class="admin-main">
<router-view />
<div class="scroll-wrapper">
<router-view />
</div>
</el-main>
<!-- 页脚 -->
@@ -290,8 +292,11 @@ const menuItems = [
.admin-main {
background: linear-gradient(135deg, #f8bbd0 0%, #e1bee7 50%, #bbdefb 100%);
padding: 20px;
}
.scroll-wrapper {
height: 100%;
overflow-y: auto;
flex: 1;
}
/* 修改卡片样式 */