refactor(frontend): 统一表格高度属性绑定方式

fix(backend): 修复租户管理菜单图标错误

style(backend): 优化启动banner显示格式

refactor(backend): 重构日志系统使用loguru替代原生logging

feat(backend): 增加租户名称校验规则

refactor(backend): 优化应用启动流程和日志初始化

docs(frontend): 更新租户管理页面标题和描述
This commit is contained in:
zhangtao
2025-11-13 00:38:06 +08:00
parent b678588d13
commit 8b16da0062
26 changed files with 404 additions and 400 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ from app.core.logger import logger
from app.core.exceptions import CustomException
def worship() -> str | None:
def worship() -> None:
"""
获取项目启动Banner(优先读取 banner.txt
"""
@@ -24,7 +24,7 @@ def worship() -> str | None:
raw = banner_file.read_text(encoding='utf-8')
# 支持文件内使用 {TITLE} / {VERSION} 等占位符
banner = raw.format(TITLE=settings.TITLE, VERSION=settings.VERSION)
return banner
logger.info(banner)
def import_module(module: str, desc: str) -> Any:
"""