fix(gencode): 修复代码生成模块的表创建和菜单生成逻辑

refactor(menu): 优化菜单表格列的溢出显示
style: 调整CSS样式属性和注释格式
fix: 修正SQL示例的格式缩进问题
chore: 更新系统菜单的keep_alive配置
This commit is contained in:
zhangtao
2026-01-04 01:27:08 +08:00
parent 1ee6400ac7
commit 2bd510de80
9 changed files with 482 additions and 443 deletions
@@ -707,8 +707,8 @@ onUnmounted(() => {
.message-body {
.fold-button {
margin-bottom: 8px;
padding: 0;
margin-bottom: 8px;
font-size: 12px;
color: var(--el-text-color-secondary);
@@ -725,17 +725,17 @@ onUnmounted(() => {
transition: all 0.3s ease;
&.collapsed {
position: relative;
max-height: 120px;
overflow: hidden;
position: relative;
&::after {
content: "";
position: absolute;
right: 0;
bottom: 0;
left: 0;
right: 0;
height: 40px;
content: "";
background: linear-gradient(to bottom, transparent, var(--el-bg-color));
}
}