feat(console): 添加控制台UI界面及功能组件

实现BLS项目控制台UI界面,包含以下主要功能:
- 项目选择器组件,支持项目筛选和选择
- 控制台组件,支持命令输入和日志显示
- 调试区域组件,展示调试信息
- 响应式布局设计,适配PC和移动端
- 日志管理功能,限制最多1000条记录
- 更新路由配置和全局样式
This commit is contained in:
2026-01-10 17:31:22 +08:00
parent 5f0fa79606
commit 95a4613965
12 changed files with 2244 additions and 20 deletions

View File

@@ -0,0 +1,17 @@
## 1. Implementation
- [x] 1.1 Create ProjectSelector component for project selection
- [x] 1.2 Create Console component for command input and log display
- [x] 1.3 Create DebugArea component for debugging information display
- [x] 1.4 Create MainView component to integrate all modules
- [x] 1.5 Create SidebarView component for sidebar display
- [x] 1.6 Update App.vue to implement two-column layout
- [x] 1.7 Update router configuration to use named views
- [x] 1.8 Implement responsive design for PC and mobile devices
- [x] 1.9 Implement console log management with 1000 record limit
## 2. Urgent Fixes
- [x] 2.1 Update openspec documentation with all changes
- [x] 2.2 Fix scrolling issues in the page
- [x] 2.3 Optimize ProjectSelector by removing filter section
- [x] 2.4 Adjust layout: remove debug area and make console height adaptive
- [x] 2.5 Ensure PC right area is non-scrollable, mobile area is properly adjusted