feat(history): 添加首页历史项目展示组件

- 新增 HistoryDatabase.vue 组件,实现扇形堆叠到网格展开的动画效果
- 后端 simulation.py 添加历史模拟数据 API 支持
- 修复 SimulationManager 过滤隐藏文件问题
- 前端 simulation.js 添加获取历史模拟数据的 API 方法
- Home.vue 集成历史项目展示组件
- 实现正方形网格背景装饰效果
This commit is contained in:
666ghj
2025-12-31 17:54:39 +08:00
parent 8b80603325
commit e6da45ee63
5 changed files with 791 additions and 0 deletions

View File

@@ -199,6 +199,9 @@
</div>
</div>
</section>
<!-- 历史项目数据库 -->
<HistoryDatabase />
</div>
</div>
</template>
@@ -206,6 +209,7 @@
<script setup>
import { ref, computed } from 'vue'
import { useRouter } from 'vue-router'
import HistoryDatabase from '../components/HistoryDatabase.vue'
const router = useRouter()