fix(Layout): 全局布局优化与 Mock 数据增强

This commit is contained in:
zdl
2025-12-23 17:45:19 +08:00
parent 7b98ecff16
commit 8f0b0aff4d
6 changed files with 84 additions and 11 deletions

View File

@@ -165,9 +165,9 @@ export const PAGE_LOADER_CONFIG = {
* 布局尺寸配置
*/
export const LAYOUT_SIZE = {
navbarHeight: '80px',
navbarHeight: '60px', // 导航栏统一高度
footerHeight: 'auto',
contentMinHeight: 'calc(100vh - 80px)', // 100vh - navbar高度
contentMinHeight: 'calc(100vh - 60px)', // 100vh - navbar高度
};
/**