feat(登录日志): 添加今日登录次数统计功能

新增今日登录次数统计接口,修复Dashboard显示问题
- 在ISysLoginLogService接口添加countToday方法
- 实现SysLoginLogService中的countToday逻辑
- 更新ISysLoginLogRepository接口
- 添加SysLogHandler中的getTodayLoginCount方法
- 在SystemRouter中配置新路由端点

fix(测试): 更新系统配置URL匹配规则
- 将uat-phase1.spec.ts中的sysconfig改为sys/config

docs: 添加E2E测试报告和Dashboard问题诊断文档
This commit is contained in:
张翔
2026-03-24 17:12:10 +08:00
parent 3d6a0bd7b8
commit 31d66103e4
14 changed files with 543 additions and 8 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 78 KiB

+2 -2
View File
@@ -198,8 +198,8 @@ test.describe('UAT阶段一:核心功能验证', () => {
});
await test.step('验证页面跳转', async () => {
await page.waitForURL(/.*sysconfig/, { timeout: 30000 });
await expect(page).toHaveURL(/.*sysconfig/);
await page.waitForURL(/.*sys\/config/, { timeout: 30000 });
await expect(page).toHaveURL(/.*sys\/config/);
});
});
});