web登录注册修改

This commit is contained in:
2025-12-24 12:06:59 +08:00
parent 1b80fda0d7
commit 3d1e19030a
20 changed files with 662 additions and 252 deletions

View File

@@ -0,0 +1,16 @@
/**
* 系统基础信息接口
*/
export interface SystemBaseInfo {
// 基础信息
systemName: string; // 系统名称
systemShortName: string; // 系统简称
loginLogo: string; // 登录页LogofileId
homeLogo: string; // 首页LogofileId
adminLogo: string; // 管理后台LogofileId
favicon: string; // 网站图标fileId
// 登录开关(来自不同分组)
smsLoginEnabled: boolean; // 短信登录开关sms分组
emailLoginEnabled: boolean; // 邮箱登录开关email分组
}