feat: 创建完整的Vue + Element UI前端管理界面

- 创建Vue 3 + TypeScript + Element Plus项目结构
- 实现完整的SPA路由系统
- 创建主布局(侧边栏 + 头部导航)
- 实现核心管理页面:
  - 仪表盘:服务状态监控和统计数据展示
  - 企业微信Bot管理:Bot配置、添加、编辑、删除
  - 消息记录:消息查询、筛选、详情查看
  - OpenClaw配对管理:配对请求审批、状态管理
  - 配对规则配置:自动配对规则管理
  - 系统配置:基本配置、数据库配置、连接信息
  - 操作日志:系统操作记录查询
- 添加响应式设计和现代化UI
- 配置Vite构建工具和TypeScript支持
This commit is contained in:
2026-03-09 14:03:05 +08:00
parent 577facf5c2
commit dd6dee45a1
15 changed files with 3713 additions and 41 deletions

View File

@@ -0,0 +1,11 @@
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"strict": true
},
"include": ["vite.config.ts"]
}