refactor(ui): 界面升级与代码规范优化

This commit is contained in:
Ray.Hao
2026-06-18 18:38:12 +08:00
parent 288ea9b43d
commit 14035cfa4d
130 changed files with 7813 additions and 5893 deletions

View File

@@ -4,6 +4,7 @@
* @description
* 包含表单类型、查询类型等代码生成功能的枚举定义
*/
import type { OptionItem } from "@/api/common";
/**
* 表单类型枚举

View File

@@ -4,6 +4,7 @@
* @description
* 包含主题、布局、语言、设备等应用设置的枚举定义
*/
import type { OptionItem } from "@/api/common";
/**
* 主题模式枚举
@@ -38,6 +39,21 @@ export const enum SidebarColor {
MINIMAL_WHITE = "minimal-white",
}
/**
* 页签栏风格枚举
*/
export const enum TagsViewStyle {
/**
* 线性页签,默认现代后台风格
*/
LINE = "line",
/**
* 卡片页签,保留图标和浅色激活块
*/
CARD = "card",
}
/**
* 菜单布局枚举
*/
@@ -55,6 +71,11 @@ export const enum LayoutMode {
* 混合菜单布局
*/
MIX = "mix",
/**
* 双列菜单布局
*/
DOUBLE = "double",
}
/**