feat: 优化管理后台页面UI、修复TS编译错误、新增人生事件模块

- 优化 AI 配置列表页面:重构统计卡片、搜索表单、表格列展示
- 修复 3 处 TypeScript TS6133 编译错误,恢复构建
- 新增管理员修改密码和重置密码功能
- 优化小程序多个页面样式和交互
- 人生事件模块完善

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-10 23:23:09 +08:00
parent 60c63850ee
commit 755059807a
62 changed files with 4661 additions and 3019 deletions
+40
View File
@@ -0,0 +1,40 @@
<svg width="1024" height="1024" viewBox="0 0 1024 1024" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#a78bfa;stop-opacity:1" />
<stop offset="50%" style="stop-color:#7c3aed;stop-opacity:1" />
<stop offset="100%" style="stop-color:#5b21b6;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="20" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="1024" height="1024" rx="200" fill="url(#logoGradient)" filter="url(#glow)"/>
<!-- Inner Design - Abstract Mind/Brain Symbol -->
<circle cx="512" cy="512" r="280" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="8"/>
<circle cx="512" cy="512" r="200" fill="none" stroke="rgba(255,255,255,0.4)" stroke-width="8"/>
<circle cx="512" cy="512" r="120" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="8"/>
<!-- Center Symbol - Spark/Star -->
<path d="M512 380 L540 480 L640 512 L540 544 L512 644 L484 544 L384 512 L484 480 Z"
fill="white" opacity="0.9" filter="url(#glow)"/>
<!-- Decorative Lines -->
<path d="M512 200 L512 280" stroke="rgba(255,255,255,0.6)" stroke-width="4" stroke-linecap="round"/>
<path d="M512 744 L512 824" stroke="rgba(255,255,255,0.6)" stroke-width="4" stroke-linecap="round"/>
<path d="M200 512 L280 512" stroke="rgba(255,255,255,0.6)" stroke-width="4" stroke-linecap="round"/>
<path d="M744 512 L824 512" stroke="rgba(255,255,255,0.6)" stroke-width="4" stroke-linecap="round"/>
<!-- Corner Accents -->
<path d="M280 280 L340 280 L280 340 Z" fill="rgba(255,255,255,0.4)"/>
<path d="M744 280 L684 280 L744 340 Z" fill="rgba(255,255,255,0.4)"/>
<path d="M280 744 L340 744 L280 684 Z" fill="rgba(255,255,255,0.4)"/>
<path d="M744 744 L684 744 L744 684 Z" fill="rgba(255,255,255,0.4)"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB